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 the types of type qualifiers in c?
Write a program to find the biggest number of three numbers in c?
Why c is faster than c++?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
What is data type long in c?
Why do we use & in c?
How can you access memory located at a certain address?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
Explain is it better to bitshift a value than to multiply by 2?
Explain the array representation of a binary tree in C.
What are formal parameters?
Why c is called top down?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?