logoISU  

CS256 - Principles of Structured Design

Fall 2021

Displaying ./code/sternflCode/h4/fixThis.c

/*

fixThis.c 

In this C program, fix all of the errors in this code
Do not add any new functions or code, just fix it so that it will compile
and so that the output matches the test program "fixed" in the working 
directory

*/
#include <stdio.h>

int main() {


	int a = 5;
    int b = 3.25;
    int c = b / a;

    print("These %d candy bars cost me $%.2f\n", a, b)
   
	return 0;
 	print("That's only $%.2f per bar!\n", c);
}