#include <stdio.h>

void main()
{
  //      data    size count stream
  fwrite("Sup?\n",  1,   5,  stdout);

  // sometimes you need to flush to force a write
  //fflush(stdout);
}