My program is very simple.
It prints "hello, world".
But when I run it, it shows error an error saying that it is unable to open include file stdio.h
I can check my directories but its shows same error.
It prints "hello, world".
Code:
/* Hello, world */
#include <stdio.h>
int main()
{
printf("Hello, world\n");
return 0;
}
I can check my directories but its shows same error.
Comment