c code compiles but is not executed in kubuntu
Posted
by yurib
on Super User
See other posts from Super User
or by yurib
Published on 2010-04-14T15:50:39Z
Indexed on
2010/04/14
15:53 UTC
Read the original article
Hit count: 237
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;
}
© Super User or respective owner