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
Can a pointer point to null?
What is difference between array and pointer in c?
What is external variable in c?
How are Structure passing and returning implemented by the complier?
Why c is called procedure oriented language?
How do you declare a variable that will hold string values?
How to throw some light on the b tree?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
How can you be sure that a program follows the ANSI C standard?
What are the application of c?
What is the difference between printf and scanf in c?
write a program to create a sparse matrix using dynamic memory allocation.
What is wild pointer in c?
how to execute a program using if else condition and the output should enter number and the number is odd only...
What is echo in c programming?