write a program and draw flowchart to add two number 30 and 50
Answers
Answered by
0
Answer:
#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