Skip to content

Commit b454a6a

Browse files
authored
Add files via upload
The C Preprocessor is not a part of the compiler, but is a separate step in the compilation process. In simple terms, a C Preprocessor is just a text substitution tool and it instructs the compiler to do required pre-processing before the actual compilation.
1 parent b3ce227 commit b454a6a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

C Preprocessors.c

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include<stdio.h>
2+
int main()
3+
{
4+
printf("File :%s\n", __FILE__ );
5+
printf("Date :%s\n", __DATE__ );
6+
printf("Time :%s\n", __TIME__ );
7+
printf("Line :%d\n", __LINE__ );
8+
printf("ANSI :%d\n", __STDC__ );
9+
}

0 commit comments

Comments
 (0)