#include <string.h> #include <stdlib.h> #include <stdio.h> int main(void) { unsigned char *stole;
I\'m writing a high-loaded daemon that should be run on the FreeBSD 8.0 and on Linux as well. The main purpose of daemon is to pass files that are requested by their identifier. Identifier is converte
I\'m running R via Rpy on a redhat linux distribution. Periodically I\'ll encounter this error message:
#include <iostream> #include <algorithm> #include <vector> #include <boost/array.hpp>
I\'m writing a client-server app, in which the client has a determined memory address from the server side.
Why does the following program segfault? int main() { main(); } Even though it is a recursion that does not end and is therefore invalid by definition, I don\'t see why it segfaults (gcc 4.4.3 and
Why does the following code seg fault before returning: int main() { char iD[20]; memset (iD, 0, 20); char* prefix;
I\'m working on some project where I use the type mpz_t from the GMP C library. I have some problems passing an array of structures (containing mpz_ts) adress to a function :
I am new to C and I am working on an XOR linked list for a project. I have most of the code done, but I can\'t seem to get the delete function of the list to work properly. It seems able to delete som
Hello (and thanks in advance) I\'m in a bit of a quandry, I cant seem to figure out why I\'m seg faulting.