main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Post New Answer View All Answers
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What is the use of bit field?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is the difference between test design and test case design?
What is the use of header?
What is the difference between functions getch() and getche()?
Do variables need to be initialized?
What is a char in c?
Difference between linking and loading?
Why c is procedure oriented?
What is the return type of sizeof?
What does node * mean?
What is bss in c?
Explain what are header files and explain what are its uses in c programming?
Why shouldn’t I start variable names with underscores?