Saturday, September 21, 2013

C-Gods Programming Language

"C Language"

#include <stdio .h>
//SUM OF TWO NUMBERS

main()
{
  
      int a,b,c;
      printf("Enter two numbers to add");
      scanf("%d%d",&amp;a,&amp;b);
      c=a+b;
      printf("Result=",a);
     
  
}

No comments:

Post a Comment