Below C program is used to convert lower case into upper case. strupr() function is a non standard function. So, all compilers may not support.
#include<stdio.h> #include<string.h> int main() { char str[ ] = "Modify This String To Upper"; printf("%s\n",strupr(str)); return 0; }
MODIFY THIS STRING TO UPPER
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
OUTPUT:
MODIFY THIS STRING TO UPPER