C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
What does the "bus error" message mean, and how does it differ from a segfault?
c unix segmentation-fault bus-errorI'm trying to develop/port a game to Android, but it's in C, and Android supports Java, but I'm sure …
c++ c androidI have some source code that was compiled on Windows. I am converting it to run on Red Hat Linux. …
c linux sleepIn C, there appear to be differences between various values of zero -- NULL, NUL and 0. I know that the …
c pointers nullThis is a follow on from a previously posted question: How to generate a random number in C? I wish …
c randomI am trying to return a C string from a function, but it's not working. Here is my code. char …
cWhat are some ways to write object-oriented code in C? Especially with regard to polymorphism. See also this Stack Overflow …
c oop objectI know that broken pipe error is thrown when the socket on the peer side is closed. But, in my …
c broken-pipe