Fill in the textboxes with the text that should go in the sp…
Fill in the textboxes with the text that should go in the spot on the same line with a _____ in the below code so that each variable is declared as the type it stores and each call to print_variable passes in an int*. Fill in the printf in print_variable so that the number stored in the parameter is printed. If a variable declaration will not work or a call is made using a variable that will not work write the word broken in the box. If no * or & are needed in a call write ok in the box. void print_variable(int* var) { printf(“%d\n”, ______); } int main() { int a = 17; ______ b = a; ______ c = *a; ______ d = &a; ______ e = &&b; ______ f = &d; ______ g = *f; print_variable( ____a ); print_variable( ____b ); print_variable( ____c ); print_variable( ____d ); print_variable( ____e ); print_variable( ____f ); print_variable( ____g ); }