Answer Posted / achal
Each of the above answers is partially correct. A
Preprocessor is a software tool. You include many
preprocessor directives in your program.
e.g. include directives , #define, #ifdef , #pragma for
conditional compilation. All these things are taken care by
this tool. It comes into picture before compiler.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What is the hardest programming language?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
Compare interpreters and compilers.
What does the file stdio.h contain?
What is string in c language?
Describe the modifier in c?
What are keywords in c with examples?
Why should I use standard library functions instead of writing my own?
How many levels of pointers can you have?
Write a program to check whether a number is prime or not using c?
What will be the outcome of the following conditional statement if the value of variable s is 10?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
Which function in C can be used to append a string to another string?
What is c preprocessor mean?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..