This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
miscutils/tocaps.c

14 lines
169 B
C
Raw Permalink Normal View History

2026-05-18 12:31:43 -04:00
#include <stdio.h>
int main(void)
{
char c = 0x00;
c = fgetc(stdin);
while (!feof(stdin)) {
c = toupper(c);
printf("%c", c);
c = fgetc(stdin);
}
return 0;
}