what is the difference between %d and %*d in c languaga?
Answer Posted / vishal pandey
int v=23,d=89;
printf("%d %*d",v,d);
then o/p v=23 and d=address value and address value change with processor but original value does not change.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
The file stdio.h, what does it contain?
how to construct a simulator keeping the logical boolean gates in c
What is atoi and atof in c?
What is the c language function prototype?
What are the types of c language?
What is conio h in c?
Explain b+ tree?
How can I write functions that take a variable number of arguments?
What is the correct code to have following output in c using nested for loop?
Explain pointer. What are function pointers in C?
How do you do dynamic memory allocation in C applications?
What are the loops in c?
What is c programing language?
Explain built-in function?
What is the difference between malloc calloc and realloc in c?