Computer Science, asked by dharshinis239, 1 month ago

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 yogeshbhuyal7
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