Integer value and format specifier C and C++ programming language

preview_player
Показать описание
C and C++ programming language Integer value and format specifier
Use of Field Width specifier
dev C++ program code
computer tech(CST276)


int i,j;
i=786;
j=-567;
printf("\n Normal value print %d",i);
printf("\n value print 1 column on display devices %1d",i );
printf("\n value print 4 column on display devices %4d",i );
printf("\n value print 5 column on display devices %5d",i );
printf("\n Normal value print %d",j);
printf("\n value print 1 column on display devices %1d",j );
printf("\n value print 4 column on display devices %4d",j );
printf("\n value print 5 column on display devices %5d",j );
printf("\n value print 6 column on display devices %6d",j );

computer tech(cst 276) computer tech. Integer value and format specifier
Рекомендации по теме
visit shbcf.ru