top of page
Frequently Asked C Language Interview Question & Answers
What do you mean by #include<stdio.h>?
In C, the hash function # tells the compiler that a statement should be sent to the C preprocessor. The 'include' looks after the new files and replace the contents of those files. and stdio.h will be valid only for the printf, scanf functions.
bottom of page