Computer Science, asked by priyanshu12131, 9 months ago

Please solve tis question☝☝
You can just draw a flowchart only​

Attachments:

Answers

Answered by sahil10august
1

#include<stdio.h>

void main()

{

int n,n2,sum=0,product=0;

printf("Enter two number\n");

scanf("%d%d",&n,&n2);

sum=n+n2;

product=n*n2;

printf("Sum= %d\n",sum);

printf("Product= %d\n",product);

}

May be helpful

Similar questions