Tagged Questions
In many programming languages, the main function, subroutine, or method marks the entry point of the program. It is generally the first-programmer-written function run when a program starts.
65
votes
4answers
1k views
Why main does not return 0 here?
I was just reading
ISO/IEC 9899:201x Committee Draft — April 12, 2011
in which i found under 5.1.2.2.3 Program termination
..reaching the } that terminates the main function returns a value of ...
56
votes
10answers
3k views
Is main() really start of a C++ program?
The section $3.6.1/1 from the C++ Standard reads,
A program shall contain a global
function called main, which is the
designated start of the program.
Now consider this code,
int square(int ...
53
votes
17answers
3k views
Why main() in C++ cannot be inlined?
I was reading the C++ FAQs and I noticed one sentence.
main() cannot be inline.
Why is this?
45
votes
6answers
2k views
Is main() overloaded in C++?
There are 2 valid versions of main() exist in C++:
int main() // version 1
int main(int argc, char **argv) // version 2
(Even old gcc allows replacing char **argv with int **argv !!)
But both ...
39
votes
4answers
2k views
“int main (vooid)”? How does that work?
I recently had to type in a small C test program and, in the process, I made a spelling mistake in the main function by accidentally using vooid instead of void.
And yet it still worked.
Reducing it ...
28
votes
4answers
1k views
Is it legal to recurse into main() in C++?
I read that the C++ standard forbids recursion in main(), but g++ compiles the following code without complaint:
int main()
{
main();
}
Can anyone clarify this?
20
votes
10answers
895 views
Where are C/C++ main function's parameters?
In C/C++, the main function receives parameters which is of type char*.
int main(int argc, char* argv[]){
return 0;
}
argv is array of char*, they point to strings. Where do these string locate? ...
19
votes
6answers
938 views
What is the proper declaration of main?
What is the proper signature of the main function in C++? What is the correct return type, and what does it mean to return a value from main? What are the allowed parameter types, and what are their ...
18
votes
15answers
1k views
Is it possible to write a program without using main() function?
I keep getting this question asked in interviews:
Write a program without using main() function?
One of my friends showed me some code using Macros, but i could not understand it.
So the question ...
18
votes
6answers
387 views
What kind of operations might one need to do before main()
I came across this question asking how to execute code before main() in C, mentioning there were strategies for C++. I've mostly lived in application space, so executing before main() has never ...
14
votes
2answers
2k views
`if __name__ == '__main__'` equivalent in Ruby
I am new to Ruby. I'm looking to import functions from a module that contains a tool I want to continue using separately. In Python I would simply do this:
def a():
...
def b():
...
if ...
13
votes
9answers
1k views
C++ main() in a large OOP project
This may be a short & simple question, but I've never found a satisfying answer to it:
What code does the main() function usually consist of in a large C++ project? Would it be an incorrect ...
12
votes
10answers
437 views
What goes into main function?
I am looking for a best practice tip of what goes into the main function of a program using c++. Currently I think two approaches are possible. (Although the "margins" of those approaches can be ...
12
votes
8answers
804 views
Why main method is static in java
I have heard some people saying " if main is not static then JVM could create an object
of class containing main and call that main through object.
But the problem is how JVM knows which constructor ...
12
votes
7answers
1k views
In a C/C++ program how does the system (windows, linux, mac OS X) call the main() function
I am looking for a more technical explanation then the OS calls the function.
Can anyone help me out or point me to a website or book?
Thanks.
11
votes
9answers
478 views
C# Way to name Main() method by yourself?
Quick question, is there a way to call your main method whatever you like ? Or does it have to be called "Main()" ?
11
votes
6answers
2k views
Why does int main() {} compile?
(I'm using Visual C++ 2008) I've always heard that main() is required to return an integer, but here I didn't put in return 0; and and it compiled with 0 errors and 0 warnings! In the debug window it ...
10
votes
4answers
375 views
Call another function when main() exits
Is it possible to call an extra function when main() exits in C?
Thanks!
9
votes
3answers
4k views
How can I write a Windows application without using WinMain?
Windows GUI applications written in C/C++ have 'WinMain' as an entry point (rather than 'main'). My understanding of this is that the compiler generates a 'main' function to be called by the C ...
8
votes
1answer
260 views
Python's if __name__==“__main__” idiom for GNU Smalltalk?
Does such a thing exist?
Ruby:
if __FILE__ == $0
main
end
Perl:
unless(caller) {
main;
}
Lua:
if type(package.loaded[(...)]) ~= "userdata" then
main(arg)
else
module(..., ...
8
votes
3answers
282 views
Compiling C++ under Linux without the runtime library
I have recently started to explore the way that the C++ runtime library is used by the generated code.
Mostly I am very curious, but I also want to evaluate the amount of work needed to develop the ...
8
votes
1answer
13k views
“Could not find the main class: XX. Program will exit.”
I have managed to run my jar file with a command prompt, but its always giving me a reponse of
Could not find the main class: XX. Program will exit.
Please help me out, thanks.
8
votes
8answers
6k views
Why default return value of main is 0 and not EXIT_SUCCESS?
The ISO 1998 c++ standard specifies that not explicitly using a return statement in the main is equivalent to use return 0.
But what if an implementation has a different standard "no error" code, for ...
7
votes
4answers
89 views
How do I make main a friend of my class from within a library?
Please see my first attempt at answering this
. I neglected to tell the whole story before in an attempt to simplify things. Turns out my example works! Sorry.
The whole story is that this is a ...
7
votes
2answers
161 views
function try catch syntax and main
A little known, but almost never used C++ feature is given a declaration:
void foo();
One possible, legal definition could be:
void foo() try {
throw 42;
}
catch(...) {
}
Here the whole ...
7
votes
2answers
109 views
Need quote from standard about legality of main function as a template function
On a whim, I tried to define the main function as a template function using clang 2.9:
template <typename T = void>
int main(int argc, char **argv)
{
}
and received the following error.
...
7
votes
3answers
196 views
Can the main (or entry-point) function be implemented as a lambda?
Is this valid under the recently updated standard?
auto main = [](int argc, char* argv[]) -> int
{
return 0;
};
My best guess is that it depends on whether main() MUST be a function, or if ...
7
votes
3answers
246 views
why “int main(anything_you_type)” doesnt produce any error?
Here I have written my name in main argument declaration but still this program works and did not give any warning.
#include <stdio.h>
int main(Mr32)
{
printf("why this works?");
...
7
votes
4answers
291 views
How can I start a 'main' in a new process in Java?
The question is rather simple. How can I start a main method in another java process? Now I do it like this:
startOptions = new String[] {"java", "-jar", "serverstart.jar"};
new ...
7
votes
2answers
453 views
Why are recursive main() calls not allowed in C++? [closed]
Possible Duplicates:
restrictions on the main() function
Is it legal to recurse into main() in C++?
I read in C++ Primer that main is not allowed to be called recursively, and in some ...
7
votes
6answers
854 views
in c++ main function is the entry point to program how i can change it to an other function?
i have been asked in a interview question to change the entry point of a c or c++ program from main() to any other function how is it possible?
thanx in advance.
7
votes
18answers
1k views
Why the name main for function main()
Why the function name main() is retained in many languages like C, C++, Java? Why not any other names for that function? Is there any common structure for all these 3 main() (in C, C++, Java)
7
votes
7answers
1k views
Main's Signature in C++
The standard explicitly states that main has two valid (i.e., guaranteed to work) signatures; namely:
int main();
int main(int, char*[]);
My question is simple, would something like the following ...
7
votes
10answers
3k views
C Main Loop without 100% cpu
#include <stdio.h>
int main() {
while(!DONE) {
/* check for stuff */
}
return 0;
}
The above code sample uses 100% cpu until DONE is true. How can I implement a program that loops ...
7
votes
2answers
1k views
Why main() cannot be declared as a static in C?
Why main must be declared as if it has external linkage?
Why it should not be static?
what is meant by external linkage??
6
votes
3answers
201 views
restrictions on the main() function
C++03 3.6.1.3: The function main shall not be used (3.2) within a program. ...
I wonder why this rule exists... Is anyone aware of any system/implementation where it would be a problem if main were ...
6
votes
1answer
302 views
Ruby equivalent to python __main__
If in a ruby file I define a function like so:
def tell_the_truth()
puts "truth"
end
is there an equivalent to python's main?
if __name__ == "__main__":
tell_the_truth()
Is it to simply ...
6
votes
1answer
579 views
How many arguments does main() have in C/C++
What numbers of arguments are used for main? What variants of main definition is possible?
5
votes
5answers
129 views
why main method in c# is always placed inside the class but not in c++
Why we put main() method always inside the class in C# while in c++ it always placed outside of the class.
5
votes
11answers
224 views
(C/C++) return EXIT_SUCCESS or 0 from main?
It's a simple question, but I keep seeing conflicting answers.
Should the main routine of a C++ program return 0 or EXIT_SUCCESS?
#include <cstdlib>
int main(){return EXIT_SUCCESS;}
or
int ...
5
votes
3answers
112 views
Is there any reason to modify the main.m file in your iOS applications?
I'm trying to get a better understanding of the purpose of each file contained in a basic iOS application.
Is there any reason to modify the main.m file? I'm wondering if that file ever needs to ...
5
votes
3answers
1k views
How do I start multiple main programs in a Java executable .jar?
I'm writing a program that contains multiple packages in it. Each package has its own main program that I want all to launch simultaneously when the .jar is executed by an interpreter. This seems like ...
5
votes
5answers
346 views
Why is main() argument argv of type char*[] rather than const char*[]?
When I wrote the following code and executed it, the compiler said
deprecated conversion from string constant to char*
int main()
{
char *p;
p=new char[5];
p="how are you";
...
5
votes
3answers
250 views
Calling a function immediately before main
Is is possible to register a function to be run immediately before main is entered? I know that all global objects are created before entering main, so I could put the code in the constructor of a ...
5
votes
2answers
402 views
Common Lisp equivalent to Haskell's main function?
Haskell's main function does just what I want: evaluate when the file is loaded by itself (e.g. ./myfile.hs or runhaskell myfile.hs) and in no other case. main will not be called when the file is ...
5
votes
4answers
2k views
Why check if (*argv == NULL)?
In the data structures class that I am currently taking, we have been tasked with writing a web crawler in C++. To give us a head start, the professor provided us with a program to get the source from ...
5
votes
8answers
599 views
In C, main need not be a function?
This code compiles, but no surprises, it fails while linking (no main found):
Listing 1:
void main();
Link error: \mingw\lib\libmingw32.a(main.o):main.c:(.text+0x106) undefined reference to ...
5
votes
3answers
228 views
What are background, foreground & main threads?
what's the difference between background, foreground & main threads? What are the diff types of threads in .NET?
5
votes
4answers
426 views
Exception handling before and after main
Is it possible to handle exceptions in these scenarios:
thrown from constructor before entering main()
thrown from destructor after leaving main()
5
votes
9answers
761 views
main() in C, C++, Java, C#
Is main() (or Main()) in C, C++, Java or C#, a user-defined function or a built-in function?