Computer Science, asked by richwitch8566, 1 year ago

Each and every statement in C language end with?

Answers

Answered by wosaasrec
1

There are two ends to a program: the physical end and logical end. The physical end is the last statement in the program. The logical end is where the program stops execution. In C language family the final brace } is used to end the program. For example in C++ we have:



  main() {


   . . .


  }  // physical end of the program.

Similar questions