c code compiles but is not executed in kubuntu
- by yurib
I'm running kubuntu 9.10 in VirtualBox, i wrote the simplest "hello world" program in C, the code compiles, i ran it through a debugger and it seems to run fine. the only problem is nothing gets actually printed to the console...
any ideas ?
heres the code:
#include <stdlib.h>
int main (int argc, char **argv) {
printf("hello world");
return 0;
}