Is there like any different between these two main functions? I was just exploring the internet looking at code and notice this small difference.
int main (int argc, char* args[])
int main (int argc, char *argv[])
Is there like any different between these two main functions? I was just exploring the internet looking at code and notice this small difference.
int main (int argc, char* args[])
int main (int argc, char *argv[])
int main()
UNREAL ENGINE 4:
Total LOC: ~3M Lines
Total Languages: ~32
--
GREAT QUOTES:
I can do ALL things through Christ - Jesus Christ
--
Logic will get you from A-Z, imagination gets you everywhere - Albert Einstein
--
The problems of the world cannot be solved by skeptics or cynics whose horizons are limited by the obvious realities. - John F. Kennedy
char* a_pointer, another_pointer; // Actually, `another_pointer' is just a char!!
int main(int argc, char * argv[])
I like to say char * a_pointer;
You can also declare it as int main(int argc char **argv);
http://stackoverflow.com/questions/3898021/mainint-argc-char-argv
And this:
int main()
Are you trolling now? Because, i can't tell if you are or if this is a question.
COOL! That solve one of my problem even if breaks the rules of pointers. You guys didn't notice args or does that not matter as well?
You guys didn't notice args or does that not matter as well?
I just thought the name would have more important in a main function and it used a lot. Thanks for clearing this up