#include<stdio.h>
int main(int argc, char *argv[])
{
printf("the value of (int) ++*argv is %d\n",(int)++*argv);
// if ( (int) ++*argv > 10 )
// return 1 ;
// else
// return 0 ;
}
The original program is commented because it's result
was 0 only
when I comment it and use printf to debug the
setiuation the result was unnormal
