C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
I have a library and a console application that uses a library. The library has a folder with source and …
c visual-studio visual-studio-2008 visual-c++I know that I can copy the structure member by member, instead of that can I do a memcpy on …
c struct copyThe problem is that the same code that compiles well on Windows, is unable to compile on Ubuntu. Every time …
c gcc compiler-warningsSuppose I have the following C code. unsigned int u = 1234; int i = -5678; unsigned int result = u + i; What implicit …
c type-conversionIf I use a break statement, it will only break inner loop and I need to use some flag to …
c nested-loops breakI want to be able to generate PDF output from my (native) C++ Windows application. Are there any free/open …
c++ c pdf open-sourceI need to sleep my program in Windows. What header file has the sleep function?
c windows sleepAs far as I can see there are 3 ways to use booleans in c with the bool type, from then …
c coding-style