then the output of ++*++argv should be n according to me because these operators are right to left associative so ++argv implies (argv+1) and * specifies argv[1],then again a * means dereferencing and ++ implies +1 in that char array,however to my disappointment the ans is p,can any1 explain y?