If the executable of the following program is “main”, then p…

If the executable of the following program is “main”, then predict its output when it is run with the following command: “./main 3 2 1 0”: [b1]![b2]![b3]![b4] #include #include #include int main(int argc, char* argv[]){      printf(“%d”, argc);      int x = 1;      while(*(++argv))           if(atoi(*argv)){                 x = x * atoi(*argv);//atoi converts ASCII string to integer                 printf(“!%d”, x);           }           return 0; }