Hi there I am pretty new to GCC..I am using GCC 4.1.2 installed on Ubuntu 4.0..Iwrote a simple "Hello World" program.. # include <stdio.h>
int main(){ printf("dev ranjan das"); }
I am getting the following message first.c:1:20: error: stdio.h: No such file or directory first.c: In function 'main': first.c:4: warning: incompatible implicit declaration of built-in function 'printf'
Can anybody help..
Amiya