toupper() function in c programming is used to convert lowercase alphabets to uppercase letters.When a programmer passed a lowercase alphabet to toupper() function then it converts it to uppercase.Or when a uppercase alphabet is passed then function returns same value.Syntax for toupper() function in c :- int toupper(int ch);Example Program for toupper() in c :- Let's go with...
Wednesday, May 26, 2021
Example program for tolower() function in C

Well as it's name says tolower() function in C programming is used to converts a uppercase alphabet to an lowercase alphabet.Syntax for tolower() in C :-int tolower(int ch);Parameter: tolower() in C use only one parameter "ch" which is a passed character to be converted to lowercase.Return...
Saturday, May 22, 2021
strcoll() function in c with example program
strcoll() in c is a library function use to compares string str1 to str2 and result will depends on result is the LC_COLLATE setting of the location.Syntax for strcoll() in c
int strcoll(const char *str1, const char *str2)Parameters for strcoll():-str1 & str2 are two Parameters which is going to use for strcoll() function in c.Read more :- Arc function in C with graphics in c Return...
clock() function in c with example program

To calculate the time in c programming we can use clock() function in c which is define in time.h header file clock can call at the beginning and end of the code for which will help to measure time.In this process subtract the obtain values for the clock function, and then divide by CLOCKS_PER_SEC...
Subscribe to:
Posts (Atom)