/* Exemplo de fputchar */ #include int main(void) { char msg[] = "Isso e um teste"; int i = 0; while (msg[i]) { fputchar(msg[i]); i++; } return 0; }