Computer Science, asked by lushanredik, 5 months ago

C program to find sum

Answers

Answered by thakurakhilesh436
0

Answer:

nice

find yourself

Explanation:

programme

Answered by krutikarajut610
1

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);

Similar questions