Write program to output all immediate values as floats
two integer values to be used and generate a result as a float.
#include <stdio.h> int main()//from w ww . j ava 2 s . co m { printf("The total is %.1f\n",16.0+17.0); return(0); }