Oct 7, 2012

Sum/Adittion of two numbers

Simple code, just a sum of two numbers entered in the code, the program will show the result only, will not ask the numbers.

#include <stdio.h>

main()
{
      printf("The addition of 3 and 4 is %d", 3+4);
      getchar();
}

No comments:

Post a Comment