hello program

hello,

I don’t arrive to compile the hello world program.

here is the program:

#include <stdio.h>
int main (void)
{
printf (“hello world! /n”);
return (0);
}

this is something simple but when I start the compiler, the linker can’t
open the 'stdio.h librairy.

Could you send me the compiler code line to compile and run this program?

thanks

julian

I guess

cc -o hello hello.c

isn’t it working?

hello,

I don’t arrive to compile the hello world program.

here is the program:

#include <stdio.h
int main (void)
{
printf (“hello world! /n”);
return (0);
}

this is something simple but when I start the compiler, the linker can’t
open the 'stdio.h librairy.

Could you send me the compiler code line to compile and run this program?

thanks

julian