#include "calculatorGetUserInput.c" int main() { float userInput1, userInput2; calculatorGetUserInput(&userInput1, &userInput2); printf("Your inputs are %f and %f", userInput1, userInput2); return 0; }