This commit is contained in:
2025-05-23 03:26:13 +03:00
parent 191705c1dc
commit 4e9b002e99
14 changed files with 307 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#include <stdio.h>
int main(void) {
int c = '\0'; // variable to hold character input by user
if ((c = getchar()) != EOF) {
printf("%c", c);
main();
}
}