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
What is volatile c?
How do you determine the length of a string value that was stored in a variable?
How many bytes are occupied by near, far and huge pointers (dos)?
Write a program to print factorial of given number without using recursion?
What is the size of enum in c?
show how link list can be used to repersent the following polynomial i) 5x+2
What's the best way of making my program efficient?
What is volatile variable in c with example?
How can I find out the size of a file, prior to reading it in?
What is assert and when would I use it?
What is getche() function?
What is a keyword?
Is main an identifier in c?
What is LINKED LIST? How can you access the last element in a linked list?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software