Answer:
c. 10
Explanation:
//C++
#include <iostream>
using namespace std;
int main()
{
int x;
cout << "Type a number: "; // Type a number and press enter
cin >> x; // Get user input
cout << "Your number is: " << x; // Display the input value
return 0;
}
Here the program reads the user input x as an integer, to then print the store value of x; the result is that the value printed is 10.