#include <stdio.h> void main() { char s[] = "another string"; printf("\nAddress of second element: %p", &s[1]); printf("\nValue of s+1 : %p\n", s+1); }