Just learning a bit of c. I've read about import statements so I'm wondering why this is working even though I haven't imported stdio.h into the program -

Code:
main()
{
       printf("this is a test");
}

It prints out fine. The compiler is gcc - is gcc automatically importing the standard library ?
Cheers,
James