#include <stdlib>
int main()
{
printf("Ola Mundo!\n");
return 0;
}
I can not run the program on Ubuntu! Compile Error
#include <stdlib>
int main()
{
printf("Ola Mundo!\n");
return 0;
}
I can not run the program on Ubuntu! Compile Error
apt-get install gcc
Change% with% for
#include <stdlib.h>
Try to put #include <stdio.h>
just above the code.
Change #include <stdlib.h>
by #include <stdio.h>
, because the printf();
function is in stdio.h
, not stdlib.h
.