fork download
  1. #include <stdio.h>
  2. #include <ctype.h>
  3.  
  4. int main() {
  5. char s[1000];
  6. int i;
  7.  
  8. printf("Enter a text: ");
  9. fgets(s, 1000, stdin);
  10.  
  11. for (i = 0; s[i] != '\0'; i++) {
  12. s[i] = toupper(s[i]);
  13. }
  14.  
  15. printf("Output: %s", s);
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 5272KB
stdin
helloworldabcd
stdout
Enter a text: Output: HELLOWORLDABCD