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 and b=3;;;; why it dosent print the value of 'c' is...
we didnt specify any format specifications....... so we wont
get c value...
but if we have given the format specifications and if we
dont give any argument to it... the garbage value will be
your o/p
printf("%d");
the o/p is :: some garbage values....
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
When should we use pointers in a c program?
What are the loops in c?
What are conditional operators in C?
Is array a primitive data type in c?
What is the acronym for ansi?
Give me the code of in-order recursive and non-recursive.
How do you determine whether to use a stream function or a low-level function?
What is function in c with example?
write a program to print data of 5 five students with structures?
What is a pointer on a pointer in c programming language?
write a program fibonacci series and palindrome program in c
Difference between pass by reference and pass by value?
What is wild pointer in c with example?
Is null valid for pointers to functions?
what is the height of tree if leaf node is at level 3. please explain