As a C newbie, it's hard for me to understand the following:
int main(int argc, char *argv[]) {
char **inputs = argv + 1;
char ** Inputs is a pointer to char * argv [], which is also a pointer, right? But why should I add a +1 at the end? Will this be extra space for the character '\ 0'?
source
share