hey i just wanted to enquire about the gcc compiler that as i am a beginner at these things and i wanted to learn more.....actually the problem is that i cannot find any inclusion files on my home folder or any file system....this is the problem<br>
<br><br>savitra@savitra-laptop:~/programs$ cat savvy.c<br>#include <cstdio><br>int main()<br>{ int a=0,b=9,c=7;<br>  printf("%d %d %d",a,b,c);<br>  return 0;<br>}<br>savitra@savitra-laptop:~/programs$ gcc -o savvy savvy.c<br>
savvy.c:1:18: error: cstdio: No such file or directory<br>savvy.c: In function 'main':<br>savvy.c:4: warning: incompatible implicit declaration of built-in function 'printf'<br><br><br>for which i tried using geany compiler that is also giving the same result.....<br>
<br>