Answer Posted / meruva
%d means it prints only given value,
and %*d means it prints garbage value.
for eg: //it prints i value is=10
int i=10;
printf("i value is=%d",i);
//it prints garbage value
int i=10;
printf("i value is=%*d",i);
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
Define circular linked list.
Can a variable be both constant and volatile?
What does %c mean in c?
What is the difference between array and structure in c?
What is the c language function prototype?
What is far pointer in c?
What is ponter?
Is it possible to pass an entire structure to functions?
Write a program to check palindrome number in c programming?
Should a function contain a return statement if it does not return a value?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Write a C program in Fibonacci series.
can anyone suggest some site name..where i can get some good data structure puzzles???
What is function definition in c?
When is a null pointer used?