C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
Both Windows (Win32 API) and OS X (Cocoa) have their own APIs to handle windows, events and other OS stuff. …
c++ c linux api user-interfaceSuppose I have a string "qwerty" and I wish to find the index position of the e character in it. (…
c indexing strchrFor a project I'm trying to read an int and a string from a string. The only problem is sscanf() …
c string scanfI have a large work space which has many source files of C code. Although I can see the functions …
c function call-graphWhat order should include files be specified, i.e. what are the reasons for including one header before another? For …
c++ cI have a class that holds an "error" function that will format some text. I want to accept a variable …
c++ c printf variadic-functionsWhenever I compile my program, I get the error above.
c compiler-errors header-files turbo-cWhat is the worst real-world macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)? Please add …
c++ c macros preprocessor