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
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is an auto variable in c?
What are the keywords in c?
Array is an lvalue or not?
What should malloc() do?
What is the difference between typedef struct and struct?
How do I convert a string to all upper or lower case?
What do you mean by keywords in c?
What are the advantages and disadvantages of c language?
What does p mean in physics?
Can you please explain the scope of static variables?
write a program to generate address labels using structures?
Can an array be an Ivalue?
What is a structure and why it is used?
Why is c still so popular?