Computer Science, asked by sainikriti943, 7 months ago

write a program and draw flowchart to add two number 30 and 50​

Answers

Answered by akib4293
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