int main()
{
int x = (2,3,4);
int y = 9,10,11;
printf("%d %d",x,y);
}
what would be the output?

Answer Posted / ajay kumar

error:
because declaration terminated incorrectly.

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..

648


Explain what happens if you free a pointer twice?

615


Which is best book for data structures in c?

601


How can you check to see whether a symbol is defined?

596


Explain the binary height balanced tree?

728






What is difference between static and global variable in c?

541


Why dont c comments nest?

625


In a switch statement, explain what will happen if a break statement is omitted?

641


Why is main function so important?

619


pierrot's divisor program using c or c++ code

1734


What are the types of i/o functions?

685


write a program to find out prime number using sieve case?

1646


WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.

2030


count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

681


Why should I use standard library functions instead of writing my own?

676