int main()
{
int x = (2,3,4);
int y = 9,10,11;
printf("%d %d",x,y);
}
what would be the output?
Answer Posted / samrat
Ans is: 4,9
For example
int i = (x, y); // stores y into i
int i = x, y; // stores x into i
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What are variables c?
What is #include stdlib h?
What is putchar() function?
What is the difference between union and structure in c?
What is this infamous null pointer, anyway?
cavium networks written test pattern ..
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
What is the difference between malloc calloc and realloc in c?
What is .obj file in c?
application attempts to perform an operation?
What is a loop?
How many levels of pointers have?
what are the different storage classes in c?
What is structure pointer in c?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?