can main method be overloaded...???
How..????
Answers were Sorted based on User's Feedback
Answer / ravindranath m
you can overload the main method, but only one version
should exist.
1. int main(void) { ... }
2. int main (int argc, char** argv) { ... }
| Is This Answer Correct ? | 22 Yes | 12 No |
Ravindranath,
You have forgot another one
1. int main(void) { ... }
2. int main (int argc, char** argv) { ... }
3. void main(int argc, char ** argv, char** environment)
| Is This Answer Correct ? | 5 Yes | 1 No |
Is data hiding and abstraction same?
what is the main difference between sizeof() operator in c and c++
What does the keyword "static" mean?
should we use linear search or binary search if elements are placed in random order or mixed?in both cases? i need a little bit detail ans?thnks
Why do we use encapsulation in oops?
What is basic concept of oop?
Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?
How can we use the preprocessor #if and #elseif.
The expansion of GNU
What is encapsulation in simple terms?
string is a class or data type in java?
How do you explain polymorphism?