main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}

Answer Posted / rohit

57 94

Is This Answer Correct ?    33 Yes 21 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why c language?

633


Are there any problems with performing mathematical operations on different variable types?

561


What is f'n in math?

607


What is the difference between char array and char pointer?

519


Define Array of pointers.

621






How many parameters should a function have?

653


What is the process to generate random numbers in c programming language?

596


What does void main return?

595


How will you print TATA alone from TATA POWER using string copy and concate commands in C?

911


What is this pointer in c plus plus?

585


What is null pointer constant?

582


One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.

2145


What is difference between constant pointer and constant variable?

614


What is ## preprocessor operator in c?

602


What are static variables in c?

611