A

Admin • 833K Points
Coach

Q. Which of the following characters returns the cursor to the left of the screen?

  • (A)
  • (B) a
  • (C)
  • (D)
  • Correct Answer - Option(C)
  • Views: 23
  • Filed under category C Programming
  • Hashtags:

Explanation by: Admin


character is used to move the cursor or print head to the beginning of the current line. Example:

#include <stdio.h>
int main()
{
printf("Hello,
World!");
return 0;
}

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.