C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
When I used openssl APIs to validate server certificate (self signed), I got following error : error 19 at 1 depth lookup:self …
c linux openssl ssl-certificate verifyI wrote this function that's supposed to do StringPadRight("Hello", 10, "0") -> "Hello00000". char *StringPadRight(char *string, int padded_len, …
c string paddingPossible Duplicate: source code of c/c++ functions I was wondering where I can find the C code that's used …
c printf stdioI am accepting the path through command line input. When I do dir=opendir(args[1]); it doesn' t enter the …
c opendirPossible Duplicate: C Macro definition to determine big endian or little endian machine? int main() { int x = 1; char *y = (char*)&…
c byte endiannessIf there's some cross-platform C/C++ code that should be compiled on Mac OS X, iOS, Linux, Windows, how can …
c++ c cross-platform c-preprocessor os-detectionI am facing a serious issue with sprintf. Suppose my code snippet is: sprintf(Buffer,"Hello World"); sprintf(Buffer,"Good …
c printfWhat are the naming conventions commonly use in C? I know there are at least two: GNU / linux / K&…
c naming-conventions