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();
}