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 are the types of operators in c?
Differentiate between declaring a variable and defining a variable?
What is the use of bit field?
What will be your course of action for a push operation?
Why should I prototype a function?
What is operator promotion?
Write a program to print fibonacci series without using recursion?
What does do in c?
What is indirection?
What are different types of pointers?
Tell us the use of fflush() function in c language?
What is the c language function prototype?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
Is c a great language, or what?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?