-
What is the meaning of the following C statement?
printf(“%10s”, state);
-
- Print empty spaces if the string state is less than 10 characters
- Print the last 10 characters of the string
- 10 spaces before the string state is printed
- All of above
- None of these
Correct Option: A
Print empty spaces if the string state is less than 10 characters