write a program for subtraction of 2 no.....
Answers
Answered by
26
Answer:
Program to subtract two numbers in C:
h> #include<conio. 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
Social Sciences,
1 month ago
English,
1 month ago
Chemistry,
1 month ago
English,
3 months ago
Environmental Sciences,
3 months ago
Environmental Sciences,
9 months ago
Social Sciences,
9 months ago