Computers in Engineering WWW Site - Example 9.3

Example 9.3


C Version

/*
     Program to show simple addition
*/

#include <stdio.h>

main()
{
  printf("C13.C -> Program to demonstrate simple addition and printf.\n");
  printf("2+3=%d\n", 5);
  return(0);
}
/* End of Program C13 */
/*
OUTPUT :
C13.C -> Program to demonstrate simple addition and printf.
2+3=5

*/

Last modified: 21/07/97