the only difference is that the argc,argv version allows you to get the command line arguments
which are stored in argv as an array of argc NUL-terminated strings
For a basic tutorial such as that on this site, then adding in more details that aren't really necessary would just seek to confuse the target audience.
However, when developing more complex applications than "Hello world!" it is often useful to have the program take command-line options, and so this is usually dealt with by a separate, slightly later tutorial.
I think perhaps some modern compilers would flag an unreferenced assignment of argc,argv as a warning, too?