Sponsor

banner image

recent posts

How to add two numbers in c

  1. #include<stdio.h>
  2. int main() {
  3. int a, b, sum;
  4. printf("\nEnter two no: ");
  5. scanf("%d %d", &a, &b);
  6. sum = a + b;
  7. printf("Sum : %d", sum);
  8. return(0);
How to add two numbers in c How to add two numbers in c Reviewed by Aishwarya chauhan on 1:32 AM Rating: 5

No comments:

Powered by Blogger.