main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Post New Answer View All Answers
Why is it important to memset a variable, immediately after allocating memory to it ?
Why do we use main function?
What is difference between scanf and gets?
What does sizeof return c?
What’s a signal? Explain what do I use signals for?
Where is c used?
What is the process to generate random numbers in c programming language?
What are header files why are they important?
What is spaghetti programming?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
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 is NULL pointer?
How pointers are declared?
How to set file pointer to beginning c?
difference between object file and executable file