Preprocessor Directives In C Programming Language

Preprocessor Directives


// program to print hello...... single line comment

/* program to
print
hello */

 #include<stdio.h>
 #include<conio.h>
 int main()
 {
 clrscr();
 printf("hello");
 getch();
 }
preprocessor-directives-and-standard-librabries 
standard-libraries 
standard-librarie 
 

Output

hello 




Facebook Likes

Youtube