C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
I'm trying to get a list of all users and all groups on Mac OS X 10.5+. How can I do …
c objective-c cocoa macos macos-carbonThis is my warning. implicit declaration of function 'exit' How i can remove it. i am using linux & gcc …
c gcc-warningI have a project of multiple .c and .h files and I write my own makefile. How can I configure …
c eclipse eclipse-cdtI have the following code: pid_t pid = fork(); if (pid == -1) { // ... } else if (pid == 0) { stdin = someopenfile; stdout = someotherfile; stderr = …
c linux unix exec io-redirectionI always saw examples and cases where using a macro is better than using function. Could someone explain me with …
c function c-preprocessorI have written a program which writes a list of data to a '.dat' file with the intention of …
c gnuplot numerical-methods pipingCan anyone please help me? I need to remove the first character from a char * in C. For example, char * …
c string cstringHow do you divide two integers and get a double or float answer in C?
c integer-divisionI think it would be easier to use function pointers if I created a typedef for a function pointer, but …
c function-pointers typedefLet's say I have a function that accepts a void (*)(void*) function pointer for use as a callback: void do_…
c function-pointers