Input && Output, Part2.
The getchar() function gets a character from the standard input. It does not have arguments hence, the parentheses are always empty.
It is defined this way:
#include <stdio.h>
int getchar();
Technically, getchar() is not a function. It is a macro. ...
iano10x.hashnode.dev2 min read