which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / shiva
All are preprocessor directives
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Explain modulus operator.
Why is this loop always executing once?
Differentiate between declaring a variable and defining a variable?
Write a program in c to replace any vowel in a string with z?
Why is c called c?
What is meant by operator precedence?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is function prototype in c language?
What is conio h in c?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What are the types of pointers in c?
Explain the difference between the local variable and global variable in c?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Should a function contain a return statement if it does not return a value?