problem 41 #include <stdio.h> #include <string.h> int main() { char str[100]; printf("Enter string: "); gets(str); printf("%s", strupr(str)); return 0; } Copy Enter a string: Convert to Uppercase and Display Result