No. Main is not a keyword in C or C++. However, your program, when linked, must provide one and only one externally scoped entry point to main(). If you use main in some other context, and you do not provide one and only one entry point main(), then your program will not link nor run.
Chat with our AI personalities
main is not a keyword, so it has to be an identifier (it usually is the name of a function in your program).
no it is the well known function in 'c' ,however it is called as function itself under the circumstances,where it callls the function
Neither is printf, stderr or NULL. Certainly, they are important words, but not keywords.
No, 'check' is not a keyword in java language.
what is the use of new keyword in awt programming
No. The keyword super is used to refer to the parent class instance while the keyword this is used to refer to the current class instance. You need to learn about Inheritance and Object creation using constructors to learn more about these keywords and their use
The void keyword is used to show that a method will not return a value. // no return type public void setX(int x) { this.x = x; } // returns an int public int getX() { return x; }