/*
     Program to demonstrate how printf can deal with numbers
*/

#include <stdio.h>

main()
{
  printf("C12.C -> Program to demonstrate printf\n");
  printf("%d\n", 5);
  return(0);
}
/* End of Program C12 */