#include <stdio.h>

int main(void){

  char* string =  "Can you use pointers?";

  printf("%s",string);

  return 0;

}