Computer Science, asked by saramobarak, 6 hours ago

write a Q basic program to subtract two numbers​

Answers

Answered by harmannat1220
0

Program to subtract two numbers in C:

h> void main(){ int one, two, sub; printf("Enter first number - "); scanf("%d",&one); printf("Enter second number - "); scanf("%d",&two); sub = one - two; printf("The subtraction of numbers %d and %d is %d",one,two,sub); getch(); } //End of the program.

Similar questions