if (h < 320);
{
printf("\nThe entered value is too low causing the satellite to slow down and burn up");
printf("\n\nRe-enter a value greater than 320:");
scanf("%f", &h_REDO);
printf("\nVc: %.2fkm/s",REDO);
}
else
printf("\nVc: %.2fkm/s",Vc);
I get errors for this part of program:
C:\Users\LOGAN\Documents\Pelles C Projects\Assignment1\Assignment1.c(32): error #2157: Unrecognized statement.
C:\Users\LOGAN\Documents\Pelles C Projects\Assignment1\Assignment1.c(33): error #2001: Syntax error: expected ';' but found 'printf'.