#include <stdio.h> int main (void) { char a[] = { 84, 101, 115, 116, 0 }; char *p = "Test"; printf ("a = %s, p = %s\n", a, p); return 0; }