Output a string to stdout: how to use puts
#include <stdio.h> int main () { char string [] = "Hiiiiiiiiiiii!"; puts (string); }