What are types of preprocessor in c?


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

Post New Answer

More C Interview Questions

String concatenation

2 Answers  


who is the father of C Language?

20 Answers   CTS, UST,


int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


How can I write functions that take a variable number of arguments?

0 Answers  


What is wrong with this code?

0 Answers  






Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.

4 Answers  


#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?

7 Answers   Intel,


what will be the output for the following main() { printf("hi" "hello"); }

5 Answers   RoboSoft,


What is the difference between the expression “++a” and “a++”?

0 Answers  


Not all reserved words are written in lowercase. TRUE or FALSE?

0 Answers  


How would you sort a linked list?

1 Answers  


What is array of pointers to string?

0 Answers  


Categories