Computer Science, asked by Anonymous, 5 hours ago

A c program to get sum of 2 numbers just help me guys.​

Answers

Answered by MrTSR
1

C0DE:

#include<stdio.h>

int main()

{

   int a = 69;

   int b = 31;

   printf("The sum of a and b is %d \n",a + b);

   return 0;

}

0UTPUT

The sum of a and b is 100

Attachments:
Answered by sunprince0000
0

Answer:Program : C Program to find sum of two numbers

#include<stdio.h>

int main() {

int a, b, sum;

printf("\nEnter two no: ");

scanf("%d %d", &a, &b);

sum = a + b;

printf("Sum : %d", sum);

return(0);

Explanation:

Similar questions