which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / thoufik
#if is not the preprocessor.......
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
Why malloc is faster than calloc?
what is the height of tree if leaf node is at level 3. please explain
What is the difference between #include and #include 'file' ?
How do you override a defined macro?
How can I ensure that integer arithmetic doesnt overflow?
Give differences between - new and malloc() , delete and free() ?
What is sizeof array?
What is the purpose of the preprocessor directive error?
Explain 'bit masking'?
to find the closest pair
What are the primitive data types in c?
What are 3 types of structures?
Explain what is the general form of a c program?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.