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
I have a varargs function which accepts a float parameter?
What are the differences between Structures and Arrays?
What is getch c?
Explain the advantages and disadvantages of macros.
Are pointers integer?
Differentiate between functions getch() and getche().
What is the use of bit field?
what is the different bitween abap and abap-hr?
What is a const pointer?
What are enums in c?
#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??
Between macros and functions,which is better to use and why?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is operator promotion?