FIFA-2022 Career Guide Free Tutorials Go to Your University Placement Preparation 
0 like 0 dislike
2.5k views
in GTU B.E. (CSE-I-Sem) Programming For Problem Solving Lab by Goeduhub's Expert (7.1k points)

Write a function that will scan a character string passed as an argument and convert all lowercase character into their uppercase equivalents using C programming

1 Answer

0 like 0 dislike
by Goeduhub's Expert (7.1k points)
edited by
 
Best answer

Lower Case to Upper Case Using Function

In this program we are going to convert lower case string into upper case string using function.

To learn basics of function in C programming Click Here.

Example :

#include<stdio.h>
#include<conio.h>
#include<string.h>
#include<ctype.h>
void LowerToUpper(char str[100]);
void main()
{
char str[100];
clrscr();

//To enter a string
printf("\nEnter a string:");
gets(str);
printf("\nString after uppercase converssion:\n");
LowerToUpper(str);

getch();
}

void LowerToUpper(char str[100])
{

//strupr() function to convert lower case string into upper case string
puts(strupr(str));
}

Output :

Output of above program showing lower case to uppercase function


For More GTU C Programming Lab Experiments Click Here

Learn & Improve In-Demand Data Skills Online in this Summer With  These High Quality Courses[Recommended by GOEDUHUB]:-

Best Data Science Online Courses[Lists] on:-

Claim your 10 Days FREE Trial for Pluralsight.

Best Data Science Courses on Datacamp
Best Data Science Courses on Coursera
Best Data Science Courses on Udemy
Best Data Science Courses on Pluralsight
Best Data Science Courses & Microdegrees on Udacity
Best Artificial Intelligence[AI] Courses on Coursera
Best Machine Learning[ML] Courses on Coursera
Best Python Programming Courses on Coursera
Best Artificial Intelligence[AI] Courses on Udemy
Best Python Programming Courses on Udemy

Related questions

 Important Lists:

Important Lists, Exams & Cutoffs Exams after Graduation PSUs

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy ||  Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 

 

Free Online Directory

...