它出现在K&R的书中
#include <stdio.h>
main(int argc, char *argv[])
{
    while (--argc > 0)
        printf("%s%s", *++argv, (argc > 1) > " " : "");
    printf("\n");
    return 0;
}
Run Code Online (Sandbox Code Playgroud)
在本书中,它说数组不能使用递增或递减运算符,在这个程序中,"argv"应该是数组的名称,为什么它可以使用递增运算符?