News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

problem under ubuntu with stdio.h

Started by gimpy, December 12, 2008, 01:19:20 AM

Previous topic - Next topic

gimpy

Im a newby in that domain and im trying to run that simple program:

#include <stdio.h>
#include <stdlib.h>

int main()
{
    printf("Hello world!\n");
    return 0;
}


the prob is that it shows me a error that is not able to find stdio.h and stlib.h could you help me to find it im not able to locate it anywhere ?

stahta01

C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

Jenna

You are missing the package "libc6-dev" and most likely more packages with development-files/headers.

gimpy

thanks i download the lib and that fix my problem