oki.. thanx :) On Thu, Jun 23, 2011 at 5:39 PM, Ankit Agarwal <[email protected]>wrote:
> 1) p1[-3] is an invalid address and thereby, it is giving 0. > > 2) p1[3]='e' having 101 as ASCII value, thus -p1[3]=-101 as integer. > > On Thu, Jun 23, 2011 at 5:36 PM, Anika Jain <[email protected]>wrote: > >> 1) >> int main() >> { >> char *p1="cquestionbank"; >> printf("%d",p1[-3]); >> return 0; >> } >> >> >> why is it giving 0?? >> >> >> 2) >> int main() >> { >> char *p1="cquestionbank"; >> printf("%d",-3[p1]); >> return 0; >> } >> >> why is this giving -101?? >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Algorithm Geeks" group. >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected]. >> For more options, visit this group at >> http://groups.google.com/group/algogeeks?hl=en. >> > > > > -- > Ankit Agarwal > > *Be the change that you want to see in the world... :)* > *----- Gandhiji* > > > -- > You received this message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. > -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en.
