RUN#include <stdio.h> #include <conio.h> #include <string.h> void main () { char str[50] = "welcome to website"; int upr ; printf("String : %s", str ); upr = strupr(str); printf("Upper of str = %s", upr); getch (); }