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
What is data type long in c?
Write a program to reverse a string.
What are external variables in c?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Write a program with dynamically allocation of variable.
i have a written test for microland please give me test pattern
What is formal argument?
What are the __date__ and __time__ preprocessor commands?
write a programming in c to find the sum of all elements in an array through function.
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is merge sort in c?
What is || operator and how does it function in a program?
What is the difference between memcpy and memmove?
Why c is called free form language?
What is New modifiers?