d-shah
d-shah
About
- Username
- d-shah
- Joined
- Visits
- 0
- Last Active
- Roles
- Member
Comments
-
printf(%5d\n",3) will print "00003" (%5d = number in decimal and in 5 digits) printf(%d\n",3,5) will print "3" only.
-
printf(%5d\n",3) will print "00003" (%5d = number in decimal and in 5 digits) printf(%d\n",3,5) will print "3" only.