What is return type in c?


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

Post New Answer

More C Interview Questions

Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error

8 Answers   IBM,


what is the use of operator ^ in C ? and how it works?

2 Answers  


What is the stack in c?

0 Answers  


1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=

16 Answers   CybOrg, Siemens,


What does sizeof int return?

0 Answers  






write a program for size of a data type without using sizeof() operator?

22 Answers   HCL, IBM,


How can I manipulate individual bits?

0 Answers  


Can I pass constant values to functions which accept structure arguments?

2 Answers  


Will Macros support multiple arguments ?

7 Answers   Oracle,


Where register variables are stored in c?

0 Answers  


How will you divide two numbers in a MACRO?

0 Answers   Apps Associates,


simple program for virtual function?

1 Answers  


Categories