main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / deepak
57 94
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What is getch c?
What is variable and explain rules to declare variable in c?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
why wipro wase
what will be maximum number of comparisons when number of elements are given?
What is a nested loop?
What are pointers in C? Give an example where to illustrate their significance.
How can I recover the file name given an open stream?
Explain data types & how many data types supported by c?
What is dynamic variable in c?
What is volatile, register definition in C
Explain what are multibyte characters?
Can 'this' pointer by used in the constructor?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?