which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / yashwanth
#pragma is not a preprosessor directive, because pragma is
use to suppress errors,, but errors are exposed only after
compilation,, which is defenitly after preprosessing,, so
pragma is not a preprosessor diretive
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain threaded binary trees?
What is dynamic variable in c?
What does 1f stand for?
What are pointers?
Tell me when is a void pointer used?
Define VARIABLE?
What is static identifier?
Is sizeof a keyword in c?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Where define directive used?
Explain 'bus error'?
What is the use of sizeof?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Explain how can you tell whether a program was compiled using c versus c++?
What is adt in c programming?