Link to home
Start Free TrialLog in
Avatar of readyyy
readyyy

asked on

Miracle C compiler stdio.h problem

Hello

I'm an absoulte beginner in C Development.

I installed Miracle C Compiler version 3.2 and wrote my first sourcecode:

#include <stdio.h>

int main()
{
      printf("Hello World!\n");
      return(0);
      
}

When i click on compile, there is an error message:

Miracle C Compiler (r3.2), written by bts.
line   1: #include stdio.h ignored--file not found.

So whats going on here? Thanks for any answers
ASKER CERTIFIED SOLUTION
Avatar of jhshukla
jhshukla
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of readyyy
readyyy

ASKER

Thank you very much! The informations on the website helped me solve the problem.
#include <stdio.h>
main(void)
{
printf("Hello World!\n");
getchar();
return 0;  
}