#include int main(void) { char x[] = "Test0one"; int i; printf("x has %d bytes.\n",sizeof x); i = 0; while (x[i]) { printf("Byte %d is character %c.\n",x[i],(int) x[i]); ++i; } return 0; }