#include <stdio.h>

int main() {
    char arr[] = "abcd";
    char *p = arr;

    printf("%c\t", ++*p);   // Increment the value pointed to by p, then print it.
    printf("%c\t", *p++);   // Print the value pointed to by p, then increment the pointer.
    printf("%c\t",(*p)++); // Print the value pointed to by p, then increment the value.
    printf("%c\n", *p);     // Print the current value pointed to by p.

    return 0;
}
