Question: I need this in C programing A variable like userNum can store a value like an integer. Extend the given program as indicated. 1. Output
I need this in C programing
A variable like userNum can store a value like an integer. Extend the given program as indicated. 1. Output the user's input. (2 pts) 2. Output the input squared. Hint: Compute squared as userNum userNum. (2 pts) 3. Get a second user input into userNum2, and output the sum and product. (1 pt) Note: This lab outputs a newline after each user-input prompt. For convenience in the examples below, the user's input value is shown on the next line, but such values don't actually appear as output when the program runs. Enter integer: 6 You entered: 6 6 squared is 36 Enter another integer: 5 6+5 is 11 65 is 30 Sample code: \#include int main(void) \{ int userNum; printf("Enter integer: \ n"); scanf("\%d", \&userNum); / Type your code here. / return 0; \}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
