Computer Science, asked by sainikriti943, 7 months ago

write a program and draw a flowchart to subtract 15 from 20​

Answers

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