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
Explain can static variables be declared in a header file?
What does malloc () calloc () realloc () free () do?
What is function prototype in c with example?
What is wrong with this statement? Myname = 'robin';
What is a global variable in c?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
When is a void pointer used?
How can I handle floating-point exceptions gracefully?
Why calloc is better than malloc?
What is #define size in c?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Explain what is the difference between null and nul?
Write a program to check whether a number is prime or not using c?
What is the difference between procedural and declarative language?
What is the difference between union and structure in c?