Files
C/DeitelC/Chapter5/exercise5-42.c
2025-05-23 03:26:13 +03:00

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();
}
}