Electrical and Computer Engineering
7 of 30
UAH
CPE 112
Activity Program
•int main()
•{
•    int temperature;    // The outside temperature
•
•    GetTemp(temperature);              // Function call
•    PrintActivity(temperature);        // Function call
•    return 0;
•}
•