What are the advantages of c preprocessor?


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

Post New Answer

More C Interview Questions

main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }

3 Answers   ME,


Write a program that takes a 5 digit number and calculates 2 power that number and prints it

7 Answers  


what is the difference between declaration ,defenetion and initialization of a variable?

7 Answers   LG Soft,


Explain can you assign a different address to an array tag?

0 Answers  


What is the default value of local and global variables in c?

0 Answers  






What are pointers? What are stacks and queues?

0 Answers   Hexaware,


Can a file other than a .h file be included with #include?

0 Answers   Aspire, Infogain,


Can math operations be performed on a void pointer?

0 Answers  


What are the ways to a null pointer can use in c programming language?

0 Answers  


Why malloc is faster than calloc?

0 Answers  


How to establish connection with oracle database software from c language?

0 Answers  


# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none

7 Answers   Microsoft, TCS,


Categories