M
Materialised
Hi,
I often see 2 different declairations of the main() function, and I am
unsure of the difference. They are
int main(int argc, char *argv[])
int main(int argc, char **argv[])
What is the difference?
And are they both complient with the ANSI standard?
I often see 2 different declairations of the main() function, and I am
unsure of the difference. They are
int main(int argc, char *argv[])
int main(int argc, char **argv[])
What is the difference?
And are they both complient with the ANSI standard?