10 lines
161 B
C
10 lines
161 B
C
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
int c = '\0'; // variable to hold character input by user
|
|
if ((c = getchar()) != EOF) {
|
|
printf("%c", c);
|
|
main();
|
|
}
|
|
}
|