seen from United States
seen from India
seen from China
seen from United Kingdom
seen from China

seen from Australia

seen from United States
seen from China

seen from Serbia

seen from Serbia

seen from Serbia

seen from Vietnam
seen from China

seen from Spain
seen from United Kingdom
seen from China
seen from United States
seen from China

seen from United Kingdom
seen from China
Difference between int main(void) and int main()
For C standard
int main(void)
int main(int argc, char * argv[]) [this parameter allow you to access environment variable, nothing complicated :) ]
why?
int main() in C means taking unknown number of argument, not no argument at all.
void main() is BAD.
void main() is BAD.
void main() is BAD.
why?
just not good for assembly language stomach :(
*****
For C++ standard
int main()
int main(int argc, char * argv[])