C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
I have declared a struct, and I try to pass an array of those structs (as well as a double …
arrays c gcc multidimensional-array incomplete-typeI am getting this error whenever I try to run GCC outside of its installation directory (E:\MinGW\bin). So, …
c gcc mingwWhats the difference between a Null pointer & a Void pointer?
c pointersIn fopen("myfile", "r+") what is the difference between the "r+" and "w+" open mode? I read this: "r" Open …
c fopenI want to do DFS on a 100 X 100 array. (Say elements of array represents graph nodes) So assuming worst case, …
c++ c stackWhich is more correct way to return from function: void function() { // blah some code } OR void function() { // blah some code …
c function voidI want to read input from user using C program. I don't want to use array like, char names[50]; because …
c string memory-management malloc dynamicI have a simple program to check if a port is open, but I want to shorten the timeout length …
c network-programmingHow portable is this conversion. Can I be sure that both assertions pass? int x = 4<5; assert(x==1); x = 4>5; …
c++ c c99I'm attempting to run a cmake hello world program on Windows 7 x64 with both Visual Studio 2010 and Cygwin, but can't …
c++ c cmake