C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
I bumped into this strange macro code in /usr/include/linux/kernel.h: /* Force a compilation error if condition is …
c linux macros linux-kernelIs there any library function available in C standard library to do sort?
c sortingHow do you compare two instances of structs for equality in standard C?
c struct equalityEdit: I've added the source for the example. I came across this example: char source[MAX] = "123456789"; char source1[MAX] = "123456789"; char …
c buffer-overflow strcpy c89 strncpyI need to build a simple HTTP server in C. Any guidance? Links? Samples?
c httpserverI saw the "new type" BOOL (YES, NO). I read that this type is almost like a char. For testing …
c objective-c types booleanOne of the things which I miss while writing programs in C is a dictionary data structure. What's the most …
c data-structures dictionaryPossible Duplicates: *.h or *.hpp for your class definitions Correct C++ code file extension? .cc vs .cpp I used to …
c++ c filenames header-files naming