/*display a string with puts*/ #include char *message ="Welcome to programmershelp"; main() { /*display the message*/ puts(message); return 0; }