I want to use the following code, but without indexing the array with"[][]" and substitute it with pointers
for (int i = 0; i < argc; i++) {
for (int j = 0; argv[i][j] != '\0'; j++) {
//code
}
}
I know that you can use pointers to traverse an array, but I'm unsure how to do that with an undefined length in the second array, in this case the string from input. Since each element of argv[] can have a different length, I want to make sure that I can properly read the characters and know when each element of argv[] ends, and the next begins.
I expect it to be something like: (If the following header to main is wrong, please tell me.)
int main(int argc, char **argv) {
for (int i = 0; i < argc; i++) {
while(argv != '\0') {
//code
*argv+1;
}
//to skip null character
argv+1;
}
}
argv
is a contiguous block of memory. I don't think that's a safe assumption. – Salyersargv
toargv + argc - 1
. – Upthrow