Computer Science, asked by stunningsanju1, 8 months ago

What are the difference between text mode and graphics mode in C language?

Answers

Answered by tanubera25
3

Answer:

Text mode:

Text mode is a personal computer display setting that divides the display screen into 25 rows and 80 columns in order to display text without images. In text mode, each box can contain one character. Text mode contrasts with graphics mode, which features an array of pixels instead of text boxes.

Text mode is also known as character mode or alphanumeric mode.

Graphics mode:

Graphics mode is a computer display mode that generates image using pixels. Today, most users operate their computer in a graphics mode opposed to a text mode or command line environment.

Answered by KailashHarjo
0

The difference between text mode and graphics mode in C language are:

  • In the C language, the term "text mode" and "graphics mode" refer to the display mode used to output text and graphics, respectively, on a computer monitor or display.

Text mode:

  • In text mode, text characters are displayed as a grid of rectangular cells on the screen, with each cell containing a single character.
  • The text is displayed in a font that is chosen by the operating system, and it is typically limited to a small number of colors.
  • Text mode is a simpler and more limited display mode, but it is efficient and requires less processing power and memory.

Graphics mode:

  • In graphics mode, the display screen is treated as a two-dimensional array of pixels, each of which can be set to a specific color.
  • In this mode, the display is not limited to a set number of characters, and it is possible to display images, drawings, and shapes with much greater detail and complexity than in text mode.
  • Graphics mode requires more processing power and memory, but it provides a much more powerful and flexible display.

#SPJ3

Similar questions