C is a general-purpose computer programming language used for operating systems, games and other high performance work and is clearly distinct from C++. It was developed in 1972 by Dennis Ritchie for use with the Unix operating system.
0
votes
0answers
13 views
Find permutations of a list of numbers with increasing length in C
Consider the following list of numbers: 0, 1, 2, 3
I am trying to find all permutations of the list of length 2, 3 and 4.
i.e.
(0, 1)
(0, 2)
(0, 3)
(1, 0)
(1, 2)
(1, 3)
(2, 0)
(2, 1)
(2, 3)
(3, 0)
...
0
votes
1answer
21 views
Convert any variable to string in C
Is is possible to convert any variable of any type to string?
I wrote the following
#define TO_STRING(val) #val
Is this a valid way of converting a variable into a string?
0
votes
3answers
19 views
C malloc and free functions's strange behaviour
char str1[]= "To be or not to be";
char str3[]= "To eat or to eat";
char * str2=(char*)malloc(80);
//char str3[40];
str2[0]=NULL;
/* copy to sized buffer (overflow safe): */
strcat(str2, str1);
...
0
votes
0answers
8 views
Calling from C functions written in NASM on x86-64
I'm studying NASM on Linux 64-bit and have been trying to implement some examples of code. However I got a problem in the following example. The function donothing is implemented in NASM and is ...
0
votes
2answers
29 views
device notification program in c
i write this code in c for detecting a flash in win xp 32
but it doesn't do anything
can anyone help
( i want just understand when a flash insert then run another program but i need a wndmain an a ...
1
vote
1answer
29 views
Error with the following code snippet
I got the following error at compile time.I know it sounds wrong,but what's the exact message compiler is trying to convey:
error: conflicting types for 'fun'
error: previous decalaration of fun was ...
0
votes
0answers
37 views
register device notification using c
i find this code for detecting flash but it have an error some times in opening the .exe file that i couldn't find out why
can any one help me please to understand how does it work?
( excuse me for my ...
0
votes
1answer
60 views
why not return latest content in hello.o
it execute command however, not return latest content in hello.o,
can hello.o call function outside, such as in dlsay.c or can hello.o access variable inside function func1 ?
expect to run hello as ...
1
vote
0answers
6 views
Remux and segment only parts of a video file without difference in output
I have a working program built on top of libav (alternatively ffmpeg - expertise is either is useful here).
It takes an mp4 video, encoded with h264 video / AAC audio, and remuxes it to MPEG TS and ...
-1
votes
1answer
121 views
Why is *- syntax/operator valid in C/C++? [closed]
I made a typo in a C program and I am confused why it compiled and what the point of the syntax is. I was trying to use the multiplication assignment operator *= but accidentally typed *-. Here is an ...
8
votes
2answers
114 views
Switch case weird scoping
Reviewing some 3rd party C code I came accros something like:
switch (state) {
case 0:
if (c=='A') { // open brace
// code...
break; // brace not closed!
case 1:
// code...
...
0
votes
2answers
37 views
C programming calling a function…passing (float*)X to a function
I have the following code shown below
To call the function the code looks similar to the following:
#define N 2
static float m1[N][N] = {{1.0, -0.02}, {0.0, 1.0}};
static float m2[N][1] = {{1.5f}, ...
-1
votes
2answers
67 views
Moving string positions in an array [closed]
I would like to ask you if you know how to move string positions in array. I would like to implement something like this.
If a=1
1 2 0 0 0 0
if a=2
0 0 1 2 0 0
if a=3
0 0 0 0 1 2
I do not ...
1
vote
3answers
69 views
Subtracting two char pointers
I have an input buffer which will in the form
-----------------------------41184676334
Some Content
More Content
-----------------------------41184676334
More ContenT!!
A variable, will store ...
-2
votes
0answers
40 views
How to perform a find and replace operation in C [duplicate]
What is the easiest way for one to find and replace various strings in a text file, in C? For instance, I want code that could search for the regex foob.r and every time that this regex is ...
0
votes
2answers
30 views
Determine Original Exit Status Code
In a software baseline I am maintaining, there are 150 statements spread out amongst various C applications that make a call to either another Linux command (e.g. rm -rf ...) or custom application ...
0
votes
1answer
24 views
Undefined reference to glshadermanager and glbatch
I am trying to compile the following program from an opengl tutorial, but gettting these weird errors. I can't figure out how to fix these, help.
IDE codeblocks 12.11, windows 7 32bit, gcc 4.7.1
Here ...
0
votes
1answer
35 views
Code works on MinGW but not on my uni's computer (Language C)
I have to make a program that calculates the integral of a function using the simpsons method and the trapezoid method. It works just fine on my computer using MinGW, but when I try to compile it in ...
-10
votes
0answers
53 views
How to code wireless program in c [closed]
Heyy,
I want to write a c program that shuts down by itself the wireless when the computer does not transfer data for 10 minutes.
i do not know how can i begin to write my code.firstly the program ...
2
votes
0answers
60 views
use gcc compile a project that shows “undefined reference to `abort'”
I wrote a printf myselef that use va_list/va_arg/va_start/va_end/va_arg.
typedef char *va_list;
#define _bnd(X, bnd) (((sizeof (X)) + (bnd)) & (~(bnd)))
#define va_arg(ap, T) ...
0
votes
0answers
22 views
Cross-platform seeking for large files
Is there a cross-platform fseek() for large files? Seeking fails when exceeding the 2GB limit.
size_t chunkSkip = 1024 * 4;
uint64_t skipped = 0;
while (skipped < args.nSkipBytes) {
uint64_t ...
1
vote
1answer
47 views
Remove 1000Hz tone from FFT array in C
I have an array of doubles which is the result of the FFT applied on an array, that contains the audio data of a Wav audio file in which i have added a 1000Hz tone.
I obtained this array thought the ...
2
votes
2answers
39 views
How to get the largest precision floating point data type of implemenation and its printf specifier?
Or put differently, are there equivalents to intmax_t and %jd but for floating point numbers?
This has already been asked as a side question here, but the question is so large that I think people ...
1
vote
1answer
12 views
Exporting ttf fonts to C source code
I'm trying to write some piece of software that uses freetype2 to render some text.
However, the conditions under which I currently develop make it really difficult to supply the ttf fonts with my ...
0
votes
1answer
20 views
HTTP/REST based file synchronization
I would like to synchronize folders and files between a server and some client. Due to the fact that the client part is limited by firewalls and proxy server, I'm forced to use a HTTP based solution.
...
-5
votes
0answers
47 views
File And Strings In C Programing [closed]
The program that get text from file then count its sentences, words,characters and paragraphs, then count number of repetitions of the given special word in the whole of the text and each ...
1
vote
2answers
125 views
How it can be a race condition. Or it is something wrong with my code
I think I am facing problem of race condition, but not sure.
Following is my code.
while(1)
{
int newsocket_fd; = accept(socket_fd,(struct sockaddr *) &client_addr, &client_len);
if ...
1
vote
2answers
61 views
Initialising 2d dynamic Array
I am new to C and trying to initialise a 2D array. I need both columns of the array to be char *, as they will contain string values.
I have it working with the array storing ints but for some ...
0
votes
1answer
44 views
Tabbing a Calendar console application using C
I am implementing a simple yearly calendar in traditional format in a console application using ANSI C. The calendar must be tabbed to show in the format of 3 x 4 months. Till now I managed to ...
0
votes
0answers
10 views
Favourite FOSS c apps - ToDoList , LAN Messenger & Truecrypt [closed]
Over the years I have learnt a lot by pulling apart my favorite free open source software that are written in c like - ToDoList , LAN Messenger & Truecrypt
Does anyone know of any other c FOSS ...
0
votes
0answers
21 views
ucnv_open error U_FILE_ACCESS_ERROR
I just compiled a C++ application on SUN Solaris using CC compiler (CC: Sun C++ 5.9 SunOS_sparc Patch 124863-01 2007/07/2).
The application is using an ICU support for the globalization.
However when ...
0
votes
3answers
54 views
C Struct Assigning to Struct Array
I am trying to add a struct to an array of structs, however I'm getting an error: Parse Issue: Expected expression. Below is my code:
main.c:
#include <stdio.h>
#include "map.h"
int main(int ...
1
vote
0answers
15 views
Receiving 'Device or resource busy', when calling hid_interrupt_write()
I am trying to send data to Measurement Computing 1208FS device using libusb and libhid on Xubuntu 12.04. I have successfully identified the device and it's endpoints, and have managed to claim the ...
-8
votes
0answers
104 views
algorithm that creates all the possible number combinations from a set of numbers [closed]
I wish to create an application in which the user inputs a set of numbers. The amount of numbers is variable, from 1 to 20(for example x). The complete set of numbers is 80. The user can choose which ...
-6
votes
0answers
33 views
Pass a value from c or c++ to inkscape? inkscape connectivity with C,C++ [closed]
i need to know about inkscape connectivity with c. my requirement is to pass a value from c or c++ code an display it in inkscape. Also i need to know where to write the code for this. i cannot find ...
-1
votes
0answers
69 views
Memory corruption with variable after union declaration in structure
I have a structure as below,
struct abc
{
float c;
union {
int ua;
char uc;
} uu;
}
now i wanted to add one new variable to this structure so i am adding at end like
struct abc
{
...
0
votes
2answers
48 views
Passing function pointer in a struct with pthreads
I am trying to emulate a callback mechanism in C with pthreads. The code I have is below:
#include <stdio.h>
#include <pthread.h>
struct fopen_struct {
char *filename;
char *mode;
...
0
votes
1answer
21 views
what does slab_bufclt() in slab_get_obj() mean?
In Linux kernel, we have a function in mm/slab.c
static void *slab_get_obj(struct kmem_cache *cachep, struct slab
*slabp,
int nodeid) {
void *objp = ...
0
votes
7answers
92 views
if-else or just declaration-if in conditional value
Suppose I have a variable that depends on a condition. From the efficiency perspective, should I use
int s;
if (d > 2)
{
s = -1;
}
else
{
s = 1;
}
or just
int s = 1;
if (d > 2)
{
s ...
0
votes
1answer
32 views
CPU Utilization on Redhat 6
I did the following code snippet on redhat 6:
#include <unistd.h>
int main(int argc, char *argv[])
{
while(true)
{
#ifdef SLEEP
sleep(1);
#endif
#ifdef USLEEP
...
4
votes
2answers
83 views
C Struct array member without specific length
I have encounter such code:
struct test
{
uint32 num_fields;
char array_field [];
};
How to understand ...
3
votes
2answers
62 views
program wont read at second scanf()
I dont understand where I went wrong. It does not read at second scanf() just skips on to the next line.
#include <stdio.h>
#define PI 3.14
int main()
{
int y='y',choice,radius;
char read_y;
...
1
vote
2answers
52 views
create an array of char arrays
If I have 5 arrays of char like this
char a[6] = "";
char b[6] = "";
char c[6] = "";
char d[6] = "";
char e[6] = "";
and I also have this part of code which gets some tokens with strtok and put ...
5
votes
3answers
128 views
Will polymorphism hold for C++ object references passed around in C?
I have a C++ lib that makes use of a object hierarchy like this:
class A { ... }
class B : public A { ... }
class C : public A { ... }
I expose functionality through a C API via typedefs and ...
0
votes
1answer
55 views
Memory leaks in freeing queue in c
I am trying to find a way to free my queue, but I am still getting memory leak for some reason. Basically, I have a Binary Search Tree with a pointer to queue.
typedef struct queue QUEUE;
struct ...
1
vote
2answers
43 views
Detecting Duplicates Using Divide and Conquer - Merge Sort
I want to detect duplicates in a given array using divide and conquer approach. Can I use Merge Sort for this:
First split the array in log N steps
Then sort by merging
While merging use a counter ...
0
votes
2answers
22 views
Multiple reading from file fails (char array malloc required?)
I am experiencing that calling read_from_fd more than once causes the data to be empty.
#include <fcntl.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
int fd;
...
1
vote
4answers
49 views
Delete the last node of a single linked list using the single pointer to start node
Can I delete the last node using the below prototype in C -:
int delete(struct node *head, int item)
Note-: The first argument here is a point to start node and not pointer to pointer to start node ...
1
vote
4answers
75 views
Read comma-separated “quoted” strings from a file
I am new to C programming but have a bit of Java knowledge, so I want to write a program that reads strings stored in a file, possibly several names separated by comma, such as "boy","girl","car" etc. ...
-5
votes
0answers
29 views
convert hex to arabic string in only c code [duplicate]
I have a function that converts from UCS2 to utf
Then I get this string "D8B1D8B5D98AD8AFD8A7D984D8B1D982D985" (in hex)
I need to convert the string to be read in Arabic رصيد الرقم
I think it's ...


