C - Input and Output
What will be the output of the following code if the user inputs
42?
int num;
printf("Enter number: ");
scanf("%d", &num);
printf("You entered: %d", num);