main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / lucky
correct answer is 57 94
| Is This Answer Correct ? | 16 Yes | 13 No |
Post New Answer View All Answers
What is pointer to pointer in c with example?
What does the format %10.2 mean when included in a printf statement?
Differentiate between the expression “++a” and “a++”?
What is the difference between %d and %i?
Is c language still used?
What is array of structure in c?
What is a pragma?
how to execute a program using if else condition and the output should enter number and the number is odd only...
What is null pointer in c?
write a program to display all prime numbers
What is sizeof return in c?
What is the process of writing the null pointer?
What is a stream in c programming?
The difference between printf and fprintf is ?
What are multidimensional arrays?