#include <stdio.h>

int main(int argc, char **argv)
{
   char text[]="Hallo";
   printf("%s\n", text);
   printf("%d\n", text[5]);

   return 0;
}
