Like this...
void loop() { char *a = "hello"; char b[] = "world"; Serial.println(a); Serial.println(b); }