main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
what is the output?
Answer Posted / s.srinivasulu
Answer:
x=57
y=94
| Is This Answer Correct ? | 14 Yes | 6 No |
Post New Answer View All Answers
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
all c language question
Write a program to find the biggest number of three numbers in c?
Differentiate between Macro and ordinary definition.
Explain how can type-insensitive macros be created?
What is the acronym for ansi?
Why is c called c not d or e?
Explain function?
What is the meaning of 2d in c?
Simplify the program segment if X = B then C ← true else C ← false
What is the translation phases used in c language?
What are the advantages of union?
Explain what header files do I need in order to define the standard library functions I use?
How do I get an accurate error status return from system on ms-dos?
What is use of pointer?