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
Explain how can I avoid the abort, retry, fail messages?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
What are # preprocessor operator in c?
Explain the difference between malloc() and calloc() function?
What does s c mean on snapchat?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
What is file in c language?
How do we print only part of a string in c?
Explain can static variables be declared in a header file?
What is the difference between malloc() and calloc()?
What is a structure in c language. how to initialise a structure in c?
What is a scope resolution operator in c?
Explain the array representation of a binary tree in C.
How do I use void main?
Add Two Numbers Without Using the Addition Operator