which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / kalpana.y
#elif is not a preprocessor
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
What is meant by keywords in c?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
Not all reserved words are written in lowercase. TRUE or FALSE?
What are qualifiers?
Explain what is the general form of a c program?
Simplify the program segment if X = B then C ← true else C ← false
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What are pointers? What are stacks and queues?
Tell me what is the purpose of 'register' keyword in c language?
What is a const pointer?
find out largest elemant of diagonalmatrix
What are the advantages of using new operator as compared to the function malloc ()?
What is the heap in c?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What are the types of data structures in c?