Writ a program to find the sum of 12.7 and 20.6. aslo subtract 20 from 23. print results
Answers
Answered by
0
Answer:
#include<stdio.h>
void main()
{
printf("%f\n",12.7+20.6);
printf("%d\n",20-23);
}
Explanation:
output
33.300000
-3
Similar questions