Write a program on swapping (100, 50)


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

Post New Answer

More C Interview Questions

Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }

2 Answers   ADITI,


a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above

0 Answers  


An array name contains base address of the array. Can we change the base address of the array?

4 Answers   NMIMS, Wipro,


HOW CAN ADD OUR FUNCTION IN LIBRARY.

5 Answers  


what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }

4 Answers  






Explain continue keyword in c

0 Answers  


Can a variable be both const and volatile?

0 Answers  


What is data structure in c programming?

0 Answers  


What are the advantages of Macro over function?

1 Answers  


Where are the auto variables stored?

0 Answers   TISL,


When should the volatile modifier be used?

0 Answers  


How can you print HELLO WORLD without using "semicolon"?

7 Answers   HCL, Infosys,


Categories