/** * Illustrates variables and printing * @author gtowell * Created: Feb 2021ß **/ #include int main(void) { int a, b, c; float fc; a = 24; b = 18; fc = a + b; printf("c = %d %f\n", b, fc); } // main()