main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Post New Answer View All Answers
What are the uses of a pointer?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Explain threaded binary trees?
What is an array? What the different types of arrays in c?
Why doesnt this code work?
What are the 32 keywords in c?
What does emoji p mean?
How is a null pointer different from a dangling pointer?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What are c header files?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What is data structure in c and its types?
Why can arithmetic operations not be performed on void pointers?
When should you not use a type cast?
What is a spanning Tree?