Which of the following declarations of function main are standard or standard conforming extensions (Please note that some compilers accept ill-formed main declarations, these should be considered incorrect).
A. void main (char* argv[] , int argc )
B. int main () correct
C. void main ()
D. int main (int argc, char* argv [] ) correct
E. int main (int argc, char* argv [], char* arge[] )