C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
Today when I was reading others' code, I saw something like void *func(void* i);, what does this void* mean …
cIf I don't know how long the word is, I cannot write char m[6];, The length of the word is …
c scanfWhen I copy code from another file, the formatting is messed up, like this: fun() { for(...) { for(...) { if(...) { } } } } How can …
c vim code-formattingI'm trying to write a program that can compare two files line by line, word by word, or character by …
c command-line-argumentsI have to debug a program that has errors in it as part of my assignment. However, I must first …
c linux debugging gdb command-line-argumentsI've been poring through .NET disassemblies and the GCC source code, but can't seem to find anywhere the actual implementation …
c math trigonometryI'm hoping someone could shed some light on how to make the parent wait for ALL child processes to finish …
c process operating-system fork posix