Computer Science, asked by Rishita24, 1 year ago

what are the main functions of c++?

Answers

Answered by Avanish010
2
Hi there,

There are many function is c++ but the main function of c ++ is :

Void Main ()

It can be also write as int main ()

Some more functions of c ++ are

return ()
clrscr()

etc.

Thank you
Answered by Suaib
2
The Main Function. In C, the "main" function is treated the same as every function, it has a return type (and in some cases accepts inputs viaparameters). The only difference is that the main function is "called" by the operating system when the user runs the program.
Similar questions