Computer Science, asked by venkatvinay015, 2 months ago

Write a C program to find the sum of any two integers​

Answers

Answered by Anonymous
1

Program : C Program to find sum of two numbers

  • #include<stdio.h>
  • int main() {
  • int a, b, sum;
  • prints("\nEnter two no: ");
  • scanf("%d %d", &a, &b);
  • sum = a + b;
  • printf("Sum : %d", sum);
  • return(0);

HOPE THIS HELPS YOU ❤️

Similar questions