main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Post New Answer View All Answers
Do you know the purpose of 'register' keyword?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
What is non linear data structure in c?
What is else if ladder?
What is the most efficient way to store flag values?
What is the difference between a free-standing and a hosted environment?
What are header files in c?
What is difference between far and near pointers?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Is linux written in c?
Why do we use int main?
How can this be legal c?
What are the header files used in c language?
What is the best organizational structure?
What is page thrashing?