Output char to the console
#include <stdio.h> int main(void) { putchar('A'); putchar('\n'); putchar('B'); return 0; }