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
What is a substring in c?
how to capitalise first letter of each word in a given string?
Explain what are the standard predefined macros?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
How can you convert integers to binary or hexadecimal?
Why ca not I do something like this?
What is the deal on sprintf_s return value?
What are disadvantages of C language.
What is call by reference in functions?
Can true be a variable name in c?
What functions are in conio h?
What is the meaning of typedef struct in c?
What is pass by reference in functions?
What is context in c?