#68_Command Line Arguments in C

 #include <stdio.h>


int main(int argcchar const *argv[])
{
    printf("The value of argc is %d\n"argc); //Initially number of agrguments i.e, The file itself
    for (int i = 0i < argci++)
    {
        printf("This argument at index number %d has value of %s\n"iargv[i]);
    }
    //Pass Command Line argument by .\.exe hii harry -- 2 arguments passed + 1 default argument i.e, the file itself.

    return 0;
}

Comments

Popular posts from this blog