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
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What do you mean by Recursion Function?
How can I get the current date or time of day in a c program?
Can stdout be forced to print somewhere other than the screen?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is the use of ?
Can a file other than a .h file be included with #include?
What is pragma in c?
Tell me what is null pointer in c?
How do you determine a file’s attributes?
What is the ANSI C Standard?
Why calloc is better than malloc?
why wipro wase
What is the difference between printf and scanf )?