Use puts() to output string - C String

C examples for String:Display

Description

Use puts() to output string

Demo Code

#include <stdio.h>
int main()//from   w  w  w  .  ja  v a  2 s  . c om
{
   puts("Unable to stop: Bad mood error.");
   return(0);
}

Result


Related Tutorials