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 algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to