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 a pointer variable in c language?
Can include files be nested?
What is the c value paradox and how is it explained?
What is 02d in c?
With the help of using classes, write a program to add two numbers.
Is c object oriented?
What are the application of c?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Write a program to implement queue.
Explain how does free() know explain how much memory to release?
What are identifiers and keywords in c?
Why does the call char scanf work?
How can I find out the size of a file, prior to reading it in?
Explain what are bus errors, memory faults, and core dumps?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.