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
Why do we need arrays in c?
What is pass by reference in functions?
What is the best way of making my program efficient?
What is difference between structure and union?
Why use int main instead of void main?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What is array within structure?
How can I find out how much free space is available on disk?
What are the types of arrays in c?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
What are the uses of null pointers?
Why c is faster than c++?
Explain bitwise shift operators?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What are enumerated types?