int i1; float f1; char name[50]; scanf("%2d %f %*d %2s",&i1,&f1,name)with input 56789 1234 45a72 gives i1=56, f1=789.0 , name="45"
prompt> last -n file.txtprints out the last n lines, where n is any integer.
int i1 = 27; float f1 = 13.13; float f2 = -45.45; char data[] = "Bonzai!"; printf("%3d %7.3f %-10s %f %o\n",i1,f1,data,f2,i1);
int i1; float f1; char name[50]; scanf("%2d %f %*d %2s",&i1,&f1,name);