Command Line Arguments - Programming

Q1:

What will be the output of the program (myprog.c) given below if it is executed from the command line?
cmd> myprog 1 2 3
/* myprog.c */
#include<stdio.h>
#include<stdlib.h>

int main(int argc, char **argv)
{
    int i, j=0;
    for(i=0; i<argc; i++)
        j = j+atoi(argv[i]);
    printf('%d\n', j);
    return 0;
}

A 123

B 6

C Error

D "123"

ANS:A - 123

No answer description is available. Let's discuss.