Answer Posted / ravikanth
The preprocessor is used to modify your program according to
the preprocessor directives in your source code.
Preprocessor directives (such as #define) give the
preprocessor specific instructions on how to modify your
source code. The preprocessor reads in all of your include
files and the source code you are compiling and creates a
preprocessed version of your source code.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What does it mean when a pointer is used in an if statement?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
write a c program for swapping two strings using pointer
what do u mean by Direct access files? then can u explain about Direct Access Files?
What are different types of pointers?
What are lookup tables in c?
Which is the memory area not included in C program? give the reason
What are the different data types in C?
What is volatile, register definition in C
can any one tel me wt is the question pattern for NIC exam
When should the volatile modifier be used?
Is c easy to learn?
What is time null in c?
How is pointer initialized in c?
What does %d do?