Rohan Sharma • almost 12 years ago
HelloWorld
Hi!
Can you please tell me why this program is not working? I am a C noob.
#include "studio.h"
int main()
{
printf("hallo world");
}
Comments are closed.
Rohan Sharma • almost 12 years ago
Hi!
Can you please tell me why this program is not working? I am a C noob.
#include "studio.h"
int main()
{
printf("hallo world");
}
Comments are closed.
3 comments
Rohan Sharma • almost 12 years ago
i think everything is fine
anuj kalia • almost 12 years ago
try replacing "hallo world" with "hello world" and see if it works
it worked for me!
Ethan Suntag • almost 12 years ago
Instead of #include "studio.h", it should be #include <stdio.h>
With the brackets instead of quotes and stdio instead of studio.