What are loops in c?


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

Post New Answer

More C Interview Questions

20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????

2 Answers  


main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail

6 Answers   TCS,


What are the restrictions of a modulus operator?

0 Answers  


a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6

7 Answers   TCS,


mplementation of stack using any programing language

1 Answers   Marlabs,






What is the difference between single charater constant and string constant?

0 Answers  


How do I create a directory? How do I remove a directory (and its contents)?

0 Answers  


. Write a program to get a string and to convert the 1st letter of it to uppercase

2 Answers   HTC,


What is wild pointer in c?

0 Answers  


How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)

4 Answers  


how can write all 1to 100 prime numbers using for loop,if and break ?

2 Answers   TCS,


c program to compute AREA under integral

0 Answers   Infosys,


Categories