PDA

View Full Version : unable to compile c code using gcc



sailend
May 13th, 2008, 06:06 AM
Hi,
I have installed ubuntu 8.04 to my notebook.
when i am trying to compile the c-code using gcc, i am getting error as unable to find stdio.h header file.

please let me know how i will ptroceed.
also i am unable to find scanf, fgetc, fpritf etc through man page.
but i am able to see the gcc path.

please help me in solving this issue.
/Sailendra

MaindotC
May 13th, 2008, 06:11 AM
Hi, sailend. Can you post the contents of your .c file please?

ad_267
May 13th, 2008, 06:11 AM
sudo apt-get install build-essential

sailend
May 13th, 2008, 06:27 AM
Thanks StrAlan for your quick reply.

Actually my c file is very simple one like to "print hello world". My intention is to see gcc is working on ubuntu 8.04 or not.

ex- #include<stdio.h>
int main()
{
printf("Hello World"); return 0;
}

The problem is: I think the setting of path or something like this becuse gcc is unable to detect header file <stdio.h> and also all other header file.

so please let me know how i set this path or should i install the new gcc. if so please tell me the way to proceed.

Thanks you again in advance...

/sailendra

MaindotC
May 13th, 2008, 06:29 AM
Yeah make sure you have build-essential installed.

MaindotC
May 14th, 2008, 08:03 AM
Did it work for you?