Hi team,
Any idea what is missing in this? Error message is highlighted below
tc@box:~/c$ cat hello.c
#include<stdio.h>
main()
{
printf("Hello World");
}
tc@box:~/c$ gcc hello.c
hello.c:1:18: fatal error: stdio.h: No such file or directory
compilation terminated.
tc@box:~/c$ ls -h
total 4
-rw-r--r-- 1 tc staff 58 Apr 20 23:36 hello.c
tc@box:~/c$ df -h | grep gcc
/dev/loop44 756.0K 756.0K 0 100% /tmp/tcloop/gcc_libs
/dev/loop45 1.2M 1.2M 0 100% /tmp/tcloop/gcc_libs-dev
/dev/loop46 896.0K 896.0K 0 100% /tmp/tcloop/gcc_base-dev
/dev/loop47 27.9M 27.9M 0 100% /tmp/tcloop/gcc
tc@box:~/c$
Thanks