main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / aru
x=55
y=92
ie; x= 35 + 20
ie; x=55;
then y= 56 +36
ie; y=99
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Explain what does the function toupper() do?
What is call by reference in functions?
Tell us the use of fflush() function in c language?
What does nil mean in c?
What is difference between far and near pointers?
What is the hardest programming language?
What are the 4 types of functions?
How does #define work?
how to find binary of number?
Where does the name "C" come from, anyway?
What is default value of global variable in c?
Explain what is the difference between #include and #include 'file' ?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
How do you initialize pointer variables?