About This Code
Posted
by the-ifl
on Stack Overflow
See other posts from Stack Overflow
or by the-ifl
Published on 2010-05-10T20:10:29Z
Indexed on
2010/05/10
20:14 UTC
Read the original article
Hit count: 234
c++
Hi Guys , well I have a simple and a stupid question !! in this code what is the role of the symbol "%3d"...I Now That % mean refer To Variable ...... This is The Code :
#include <stdio.h>
int main(void)
{
int t, i, num[3][4];
for(t=0; t<3; ++t)
for(i=0; i<4; ++i)
num[t][i] = (t*4)+i+1;
/* now print them out */
for(t=0; t<3; ++t) {
for(i=0; i<4; ++i)
printf("%3d ", num[t][i]);
printf("\n");
}
return 0;
}
© Stack Overflow or respective owner