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 are valid operations on pointers?
Explain what does the format %10.2 mean when included in a printf statement?
Explain how do you determine a file’s attributes?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is assignment operator?
Write a factorial program using C.
how to write a c program to print list of fruits in alpabetical order?
What is a stream in c programming?
What is the difference between near, far and huge pointers?
When can you use a pointer with a function?
How was c created?
Explain how can you check to see whether a symbol is defined?
What is the difference between struct and typedef struct in c?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
Subtract Two Number Without Using Subtraction Operator