write a q basic program to find the sum of two numbers
Answers
Answered by
3
Cls
input a
input b
Let c = a + b
print c
End
fshd:
dear
Answered by
1
#include<stdio.h>
int main() {
int a, b, sum;
printf("\nEnter two no: ");
scanf("%d %d", &a, &b);
Similar questions