int a=2,b=3,c=4;
printf("a=%d,b=%d\n",a,b,c);
what is the o/p?
Answer Posted / vignesh1988i
A=2,B=3
SINCE THEIR IS NO SPECIFIER FOR SPECIFING THE DATA TYPE OF VARIABLER c so only a & b wil get printed
thank u
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What kind of structure is a house?
What is the significance of an algorithm to C programming?
Is it better to use a macro or a function?
Write a program to swap two numbers without using third variable in c?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Describe wild pointers in c?
What is signed and unsigned?
Differentiate between null and void pointers.
how should functions be apportioned among source files?
Can the size of an array be declared at runtime?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Explain what is a pragma?
What will be the outcome of the following conditional statement if the value of variable s is 10?
Why void is used in c?