#include <stdio.h>

int main(void) {
	char *pc = 'H';      // single character
	char *ps = "hello";  // a string
	return 0;
}
