Develop and execute a C function that will scan a character string passed as an argument and convert all lower-case characters to their upper-case equivalents .
Answers
Answered by
0
Answer:
include <stdio.h>
#include <string.h>
int main()
char str[30];
printf("Enter your String(Upper case):");
scanf("%[^\n]", str);
int i = 0;
//convert capital letter string to small letter string
Similar questions
English,
17 days ago
Math,
17 days ago
Social Sciences,
17 days ago
Math,
1 month ago
Chemistry,
9 months ago
Computer Science,
9 months ago