C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
What command does one have to enter at the command line in Windows 7 to compile a basic C program? Like …
c windows gcc command-line mingwConsider these definitions: int x=5; int y=-5; unsigned int z=5; How are they stored in memory? Can anybody explain …
c unsigned-integer signed-integerProgram: So I made a program that take two numbers, N and L. N is the size of a 2D …
c coredumpIt's all in the title; super-simple I reckon, but it's so hard to search for syntactical things anywhere. These are …
c file-type cs50I have a data structure like this: struct foo { int id; int route; int backup_route; int current_route; } and …
c initializationHow can I get the IPv4 address of an interface on Linux from C code? For example, I'd like to …
c linux socketsK&R doesn't go over it, but they use it. I tried seeing how it'd work by writing an …
c pointers castingI was curious to know how I can round a number to the nearest whole number. For instance, if I …
c math int rounding integer-divisionWhich preprocessor define should be used to specify debug sections of code? Use #ifdef _DEBUG or #ifndef NDEBUG or is …
c++ c debuggingI need my code to do different things based on the operating system on which it gets compiled. I'm looking …
c operating-system c-preprocessor conditional-compilation