Tip - keeping leading zeros in C
Published
| Submitted by Seph
I was trying to print a integer in c but those starting with zeroes causing me problem.
For example if no. is 01234 it is printing like 1234 instead of 01234.please tell how to do it in C
My prob...