This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

format specifier

static char x;
printf("%d",x);
above statement does not work. but following statement work
printf("%bd",x);
what is differance between format specifier %d and %bd

0