int main()
{
int x = (2,3,4);
int y = 9,10,11;
printf("%d %d",x,y);
}
what would be the output?
Answer Posted / kalyan chukka
in This Given x=(2,3,4) which takes priority from left->right
and given y=9,10,11 So in This it takes priority from right
-> left so answers are
X=4
Y=9
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What is difference between array and structure in c?
how can f be used for both float and double arguments in printf? Are not they different types?
What is the value of uninitialized variable in c?
How can I list all of the predefined identifiers?
write a program to concatenation the string using switch case?
How do we print only part of a string in c?
What is the explanation for prototype function in c?
What is bin sh c?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What is the meaning of typedef struct in c?
Is that possible to add pointers to each other?
Why doesnt that code work?
Is sizeof a keyword in c?
Difference between strcpy() and memcpy() function?