Q:

C PROGRAM TO CONVERT LOWER CASE INTO UPPER CASE AND VICE VERSA:

0

C PROGRAM TO CONVERT LOWER CASE INTO UPPER CASE AND VICE VERSA:

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.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include<stdio.h>
 
#include<string.h>
 
int main()
 
{
 
    char str[ ] = "Modify This String To Upper";
 
    printf("%s\n",strupr(str));
 
    return  0;
 
}

OUTPUT:

MODIFY THIS STRING TO UPPER

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now