I am taking a course at (CMIS 102) at UMUC and I would like to know what is wrong with the C code that I have written?
Hello,<br/><br/><br/>I am taking a course at (CMIS 102) at UMUC and
I would like to know what is wrong with the C code that I have written?
// C code
// This will calculate the quotient of Team X and Team Y
// Developer: Facility CMIS102
// Date: June 13, 2019
#include <stdio.h>
int main ()
{
/* variable definition: */
Float Team X, Team Y, quotient;
/* Initialize sum */
quotient = 12;
printf(“Enter a value for Team X\n”);
scanf(“%f”, &Team X);
printf(“Enter a value for Team Y\n”);
scanf(“%f”, &Team Y);
quotient = Team X/Team Y;
printf(“product is: %f\n ” , product );
return 0;
}