#include <stdio.h>
int main()
{
char *ptr, str[] = "another";
ptr = str;
printf("%d %c\n", *ptr+3, *(ptr+3));
return 0;
}
References: C From Theory