Answer:
See Explaination
Step-by-step explanation:
#include <stdio.h>
int main(void)
{
const double G = 6.673e-11;
const double M = 5.98e24;
double accelGravity = 0.0;
double distCenter = 0.0;
distCenter = 6.38e6;
//<StudentCode>
accelGravity = (G * M) / (distCenter * distCenter);
printf("accelGravity: %lf\\", accelGravity);
return 0;
}