Computer Science, asked by taranvirsingh113, 8 months ago

____ symbol is used to terminate each statement of c language .
(a) colon
(b) semicolon
(c) comma
(d) full stop ​

Answers

Answered by tanvi3176
10

Answer:

Option b Semicolon

Explanation:

SEMICOLON IS A statement terminater in a c language.

Answered by vishakasaxenasl
0

Answer:

The correct answer is option (b)

A semicolon is used to terminate each statement of C language.

Explanation:

A program is a group of computer understandable instructions written using a programming language.

  • C is a procedure-oriented programming language in which each instruction is terminated by using the semicolon(;) at the end.
  • When the compiler starts compiling the code, it execute the code it converts the high level language into Object code.
  • But how the compiler will figure out when a particular line is ending and new line begins.
  • So for this purpose, every language has some kind of line teminators that tells the compiler the end of a line.
  • In C language, semicolon(;) is used for termination purpose.
  • It tells the compiler that it is the end of the statement and it can start executing the next statement.

#SPJ3

Similar questions