which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma

Answers were Sorted based on User's Feedback



which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / thoufik

#if is not the preprocessor.......

Is This Answer Correct ?    3 Yes 6 No

which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / kalpana.y




#elif is not a preprocessor

Is This Answer Correct ?    2 Yes 6 No

which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / jobin mathew

#pragma is not a preprocessor

Is This Answer Correct ?    3 Yes 8 No

which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / c.sureshkumar

elif is not a preprocessor

Is This Answer Correct ?    5 Yes 12 No

which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / kalpana.y



#elif is not a preprocessor

Is This Answer Correct ?    1 Yes 8 No

which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / debasish mishra

#pragma is not a preprocessor directive

Is This Answer Correct ?    2 Yes 9 No

Post New Answer

More C Interview Questions

#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?

1 Answers  


WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****

2 Answers  


How does free() know explain how much memory to release?

0 Answers  


Is c a great language, or what?

0 Answers  


What is a ternary operator in c?

0 Answers  






write a program to generate 1st n fibonacci prime number

12 Answers  


Explain output of printf("Hello World"-'A'+'B'); ?

0 Answers  


can we declare a variable in different scopes with different data types? answer in detail

3 Answers   TCS,


What is C language Terminator?

15 Answers   TCS,


What does the message "warning: macro replacement within a string literal" mean?

1 Answers  


write a c program for greatest of three numbers without using if statment

4 Answers   IBM,


why program counter is 16 bit?

3 Answers  


Categories