write a program and draw a flowchart to subtract 15 from 20
Answers
Answered by
0
Explanation:
#include<stdio.h>
int main()
{
int a, b, c;
printf("Enter two no: ");
scanf("%d %d", &a, &b);
c = a - b;
printf("c : %d", c);
}
return(0);
Similar questions