Data Type C

#include 
int main(void)
{
  char str[80];
  *( str + 3) = 'o';
  printf("%c", *(str+3));
  return 0;
}