Tuesday, June 28, 2011

what is #include ???


Preprocessor directive
Tells computer to load contents of a certain library header file
<stdio.h> allows standard input/output operations
 








Example:
#include <stdio.h>

int main()
{

    printf("Welcome To Huzaifa's Blog\n");

    return 0 ;

}

No comments:

Post a Comment