int main()
{
int x = (2,3,4);
int y = 9,10,11;
printf("%d %d",x,y);
}
what would be the output?
Answer Posted / hemant kumar
error
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
How can I do peek and poke in c?
Write a program to swap two numbers without using the third variable?
Compare interpreters and compilers.
What does 3 mean in texting?
What is sizeof c?
Can you write the function prototype, definition and mention the other requirements.
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
What is the benefit of using const for declaring constants?
What is the return type of sizeof?
What is pointers in c?
What is the ANSI C Standard?
What are the applications of c language?
How can I automatically locate a programs configuration files in the same directory as the executable?
what do the 'c' and 'v' in argc and argv stand for?