answersLogoWhite

0

toupper is used to change the case of given character to upper case

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is d command for squareroot in C programming?

There are no commands in C-programming, you should use function sqrt from math.h


What is a sizeof function in C programming?

Sizeof is an example.


Is combination a library function in c language of programming?

No.


How do you convert uppercase to lowercase and vice versa in c?

with toupper and tolower, from ctype.h


What is fncn in C programming?

1. identifier 2. short for function


What is the function of square root in C programming?

it is sqrt in header math.h


What is the difference between a precondition and postcondition in C programming?

In C programming, a precondition is a condition that must be true before a function is called, while a postcondition is a condition that is guaranteed to be true after the function has been executed.


What is the approach of C programming known as?

Sequential style, or function-oriented. Which is opposed to object-oriented, as in C++.


How do you print 0001 in C programming?

its quite simple using printf function


What is library function in C programming?

printf, fgets, strlen, malloc etc


What an example of a function?

In C-programming: int main (void) { return 0; }


Converting lower to upper case in C programming?

I believe characters have a toUpper() function. For example: char x = 'a'; printf("%c\n", x.toUpper()); // This should print "A" You could also add or subtract using ascii values - remember, a char is pretty much an integer, just displayed differently. For example: printf("Character %c = decimal %d\n", x, x); will display your character and its ascii integer equivalent.