C programs
- From: Karl Larsen <k5di@xxxxxxxxxx>
- Date: Tue, 26 Feb 2008 08:46:17 -0700
I write in ANSI C and the gcc on Ubuntu 1.7 doesn't like it. Here is
the source code:
/* converts 2 fathoms to feet */
#include <stdio.h>
int main (void)
{
int feet, fathoms;
fathoms = 2;
feet = 6 * fathoms;
printf("There are %d feet in %d fathems!\n", feet, fathoms);
return 0;
}
When I run gcc it errors out with:
karl@karl-desktop:~/Cprog$ gcc fathm_ft.c
fathm_ft.c:2:19: error: stdio.h: No such file or directory
Now it can't find stdio.h and why is that?
I thought stdio.h is a standard C header.
Karl
--
Karl F. Larsen, AKA K5DI
Linux User
#450462 http://counter.li.org.
PGP 4208 4D6E 595F 22B9 FF1C ECB6 4A3C 2C54 FE23 53A7
--
ubuntu-users mailing list
ubuntu-users@xxxxxxxxxxxxxxxx
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
- Follow-Ups:
- Re: C programs
- From: Smoot Carl-Mitchell
- Re: C programs
- From: Marius Gedminas
- Re: C programs
- From: Paul
- Re: C programs
- Prev by Date: Re: Connecting to L2TP
- Next by Date: Re: C programs
- Previous by thread: ldap problem nss_ldap
- Next by thread: Re: C programs
- Index(es):
Relevant Pages
|