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
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
How can you avoid including a header more than once?
What is the difference between strcpy() and memcpy() function in c programming?
What is header file definition?
Describe explain how arrays can be passed to a user defined function
What is && in c programming?
What is a method in c?
What is new line escape sequence?
Linked lists -- can you tell me how to check whether a linked list is circular?
What is struct node in c?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
I heard that you have to include stdio.h before calling printf. Why?
What are the different types of objects used in c?
Differentiate between new and malloc(), delete and free() ?
How can I change their mode to binary?