#include <stdio.h>
main(argc, argv)
int argc;
char *argv[];
{
register int i, nflg;
nflg = 0;
if(argc > 1 && argv[1][0] == '-' && argv[1][1] == 'n') {
nflg++;
argc--;
argv++; //Incements a constant pointer, how???
}
for(i=1; i<argc; i++) {
fputs(argv[i], stdout);
if (i < argc-1)
putchar(' ');
}
if(nflg == 0)
putchar('\n');
exit(0);
}
This program increments the value of argv, but argv is a constant pointer in C. Why don't I get a compilation error from this?
argvis not a pointer, it is an array of pointers. Arrays decay into pointers only when you pass them to functions expecting pointers. – Alexandre C. Feb 24 at 17:36argvis not an array of pointers; remember that in the context of a function parameter declaration,T a[]is interpreted asT *a. In this case,argvis typechar **, so the++is allowed. – John Bode Feb 24 at 19:30