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
What is return in c programming?
In a header file whether functions are declared or defined?
int far *near * p; means
How can I list all of the predefined identifiers?
Why malloc is faster than calloc?
Explain two-dimensional array.
Add Two Numbers Without Using the Addition Operator
What are the back slash character constants or escape sequence charactersavailable in c?
How does selection sort work in c?
What is union and structure in c?
What is extern storage class in c?
Write a program to print “hello world” without using semicolon?
Can the size of an array be declared at runtime?
Implement bit Array in C.
How to find a missed value, if you want to store 100 values in a 99 sized array?