/* Program: print.c Testing the printf function. */ #include #include "genlib.h" #include "simpio.h" main() { int x ; x = 314 ; printf("1234567890123456789012345\n") ; printf("%d\n",x) ; printf("%8d%8d\n",x, x) ; printf("%-8d%-8d\n",x, x) ; printf("%08d%08d\n",x, x) ; } __________________________________________ 1234567890123456789012345 314 314 314 314 314 0000031400000314