4. What would happen if you moved the Set Sum = 0.0 from inside the for loop to right
4. What would happen if you moved the Set Sum = 0.0 from inside the for loop to right after the
declaration. For example:
// Declare variables
Declare StudentName as String
Declare ExamValue, Sum, Avg as Float
// Initialize Sum
Set Sum = 0.0;
Support your experimentation with screen captures of executing the new code.
ORIGINAL CODE – #include int main (){ /* variable definition: */ char StudentName[100]; float ExamValue, Sum, Avg; int students,exams; // Loop through 5 Students for (students=0; students