wreck.c (cont’d)
printf (“Its depth at sea: \n”) ;
printf (“ %d fathoms \n”, fathoms) ;
printf (“ %d feet \n”, feet);
printf (“ %d inches \n”, inches);
%d is a place holder - indicates that the value of the integer variable is to be printed in decimal form (rather than binary or hex) at that location.