C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
I'm getting the following issue when trying to run make on the HTK library: (cd HTKLib && make HTKLib.…
c makefile htkI got a code snippet in which there is a printf("%.*s\n") what does the %.*s mean?
c printf format-specifiersHow can I encrypt and decrypt a file with a 256 key AES in C or C++?
c++ c encryption aesThis seems like a simple question, but I can't find it with the Stack Overflow search or Google. What does …
c naming-conventions typesI just encountered a DEBUG macro in C that I really like #ifdef DEBUG_BUILD # define DEBUG(x) fprintf(stderr, …
c++ c debugging c-preprocessorI was trying to figure out how much memory I can malloc to maximum extent on my machine (1 Gb RAM 160 …
c memory-management operating-system malloc cpu-architecture[how to use ~ operator ] I have a structure say Alpha. I know the value of element inside Alpha (say a) …
c bitwise-operatorsI have a big problem with my iOS App: it crashes sometimes without detailed debug error. The stack trace is …
ios objective-c c crash mallocC has the following syntax for a shorthand IF-ELSE statement (integer == 5) ? (TRUE) : (FALSE); I often find myself requiring only one …
c if-statement shortcut