|
Description
A simple example which
displays a message using the puts(
) function .
Code
/*display a string
with puts*/
#include <stdio.h>
char *message ="Welcome
to programmershelp";
main()
{
/*display the message*/
puts(message);
return 0;
}
Information
checked on Visual C++
6
|