// stellar_information.c // // This program simulates a star system in space // // Written by YOUR-NAME, YOUR-ZID // on TODAYS-DATE #include #include #define CONVERSION_CONSTANT 9.461e12 #define LIGHT_SPEED 299792.458 // TODO: TASK 1 void print_star_information(struct star *star); void input_star_information(struct star *star); double time_travel(struct star *star); int main() { // TODO: TASK 2 input_star_information(star_ptr); print_star_information(star_ptr); return 0; } // Takes in the stars information void input_star_information(struct star *star) { // TODO: TASK 3 } // Estimate travel time from Earth to the star based on star's distance double time_travel(struct star *star) { // TODO: TASK 4 return 42.0; } // Prints the stars information void print_star_information(struct star *star) { // TODO: TASK 5 }