main()
{
int i = 10;
printf(" %d %d %d
", ++i, i++, ++i);
}


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

Post New Answer

More C Interview Questions

what is difference between array of characters and string

18 Answers   Accenture, Nest,


Explain the use of #pragma exit?

0 Answers  


Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.

12 Answers   MIT, TCS,


program to find the roots of a quardratic equation

1 Answers  


What are dangling pointers in c?

0 Answers  






How do I swap bytes?

0 Answers  


write a c program to find the probability of random numbers between 1-1000

0 Answers   ADS,


How are portions of a program disabled in demo versions?

0 Answers  


What is the benefit of using #define to declare a constant?

0 Answers  


what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.

6 Answers   HCL,


#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }

15 Answers   Infosys,


what are the advantages & disadvantages of unions?

2 Answers  


Categories