main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
what is the output?
Post New Answer View All Answers
What is sorting in c plus plus?
What is the modulus operator?
What is class and object in c?
What is difference between array and structure in c?
Is null equal to 0 in sql?
Why is c so powerful?
What is realloc in c?
What is sizeof int?
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
What happens if header file is included twice?
how we can make 3d venturing graphics on outer interface
What is the explanation for modular programming?
Write a program to generate the Fibinocci Series
Explain what is a static function?
If the size of int data type is two bytes, what is the range of signed int data type?