•   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");
}

  • 3 comments

  •   •   almost 12 years ago

    i think everything is fine

  •   •   almost 12 years ago

    try replacing "hallo world" with "hello world" and see if it works

    it worked for me!

  •   •   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.

Comments are closed.