71.8k views
0 votes
Michelle is writing an assignment on programming language. Help Michelle complete the following statement that describes the input statements of C programming language.

Input statements allow the user to enter data that a program uses to perform necessary computations. Users enter the data when they _____ the program.

---------------------------------------------------
I need for this to be answered within the next 3 hours.

2 Answers

5 votes

Answer:

the answer is: execute

User Carl Meyer
by
5.9k points
6 votes

Input statements allow the user to enter data that a program uses to perform necessary computations. Users enter the data when they encounter the statements like the scanf() or gets() functions in the program.

Step-by-step explanation:

The scanf() is the function that is used to take inputs from the user with the help of the standard input device,i.e, the keyboard.

scanf() function is capable of taking any data type as an input, though it has to be specified first like %d for integers, %s for strings and %f for floating-point type. The gets() function can only take a string as an input.

User Ecm
by
5.3k points