What is ## preprocessor operator in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Are pointers really faster than arrays?

0 Answers  


If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?

6 Answers   Hughes,


how does printf function work

1 Answers  


#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?

6 Answers  


write a C code To reverse a linked list

2 Answers   Motorola, Wipro,


What functions are used in dynamic memory allocation in c?

0 Answers  


Why is c faster?

0 Answers  


Explain what are the different data types in c?

0 Answers  


What are actual arguments?

0 Answers  


int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }

3 Answers  


What does s c mean in text?

0 Answers  


What are identifiers c?

0 Answers  


Categories