On Sat, 08 Apr 2000, you wrote:
> when i compile a real simple program in c ,ie hello.c i write :cc hello.c 
> but then i get an error message stdio:no such file or directory,i find this 
> strange because i have that library.can you help?thanks in advance.

if you look at your source, you will probably see

#include <stdio>

change it to 

#include <stdio.h>

and it should work.

-- 
Alex
(Go easy on me, I'm a COBOL programmer in real life)

Reply via email to