C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
What's the best way to declare an integer type which is always 4 byte on any platforms? I don't worry about …
c portabilityI am very new to Lex and Yacc. I have a Lex program. Example: wordcount.l I am using windows …
c lexThis may be a matter of style, but there's a bit of a divide in our dev team and I …
c++ c if-statement coding-style c-preprocessorI have a floating point number such as 4917.24. I'd like to print it to always have five characters before the …
c formatting printfI know that the signature of the scanf function is: int scanf(const char *format, ...) What is the int value …
c scanfWhat's the meaning of exception code EXC_I386_GPFLT? Does its meaning vary according to the situation? In that case, …
c++ c exc-bad-accessWhat is the difference between memcpy() and strcpy()? I tried to find it with the help of a program but …
c memcpy strcpyI am reading matrix through file with the help of fscanf(). How can i find EOF? Even if i try …
c scanfLet's say I have an integer called 'score', that looks like this: int score = 1529587; Now what I want to do …
c bitwise-operatorsI would like to check if a given directory exists. I know how to do this on Windows: BOOL DirectoryExists(…
c file directory file-exists