int main()
{
int x = (2,3,4);
int y = 9,10,11;
printf("%d %d",x,y);
}
what would be the output?
Post New Answer View All Answers
How can I write functions that take a variable number of arguments?
What are the disadvantages of a shell structure?
What would be an example of a structure analogous to structure c?
What does %d do?
What does d mean?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
I have seen function declarations that look like this
Write a program to check whether a number is prime or not using c?
How to Throw some light on the splay trees?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
Explain low-order bytes.
Are the expressions * ptr ++ and ++ * ptr same?
What is new line escape sequence?
How can a string be converted to a number?
What is context in c?