/* Second C demo program. */
/* Print "hello" using a string (char* pointer) variable */
/* CSE 374 lecture 22sp, HP */

#include <stdio.h>     // for printf
#include <stdlib.h>    // for EXIT_SUCCESS

int main(int argc, char ** argv) {\
  char* greeting = "Hello!";
  printf("The message is: %s\n", greeting);
  return EXIT_SUCCESS;
}