How macro execution is faster than function ?


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

Post New Answer

More C Interview Questions

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,


WHAT IS LOW LEVEL LANGUAGE?

2 Answers  


b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720

1 Answers   HCL,


Write a program to swap two numbers without using third variable in c?

0 Answers  


How can I get back to the interactive keyboard if stdin is redirected?

0 Answers  






what is the significance of static storage class specifier?

0 Answers  


Explain about C function prototype?

0 Answers  


write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????

7 Answers   Infosys, TCS,


Where does the name "C" come from, anyway?

0 Answers   Celstream,


String concatenation

2 Answers  


write a c program for swapping two strings using pointer

0 Answers  


dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?

4 Answers  


Categories