What is the meaning of
?


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

Post New Answer

More C Interview Questions

How to set a variable in the environment list?

1 Answers  


What does it mean when a pointer is used in an if statement?

0 Answers  


Explain how do you print an address?

0 Answers  


What is the c value paradox and how is it explained?

0 Answers  


What does struct node * mean?

0 Answers  






i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none

0 Answers  


What are actual arguments?

0 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,


Explain how can you tell whether two strings are the same?

0 Answers  


How do you override a defined macro?

0 Answers  


Explain output of printf("Hello World"-'A'+'B'); ?

0 Answers  


extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }

2 Answers  


Categories