which statements in C programming are used for alerting the normal font of a program
Answers
Answered by
0
There are two kinds of comments in C:
Multi-line Comment: begins with a /* and ends with a */, and can span several lines.
End-of-line Comment: begins with // and lasts till the end of the current line.
Similar questions