C Program to replace all lowercase vowels into uppercase in a string
Here is the C program to convert lowercase characters into uppercase and vice-versa. #include<stdio.h> #include<conio.h> void main() { char str[200]; int i=0; ...
Here is the C program to convert lowercase characters into uppercase and vice-versa. #include<stdio.h> #include<conio.h> void main() { char str[200]; int i=0; ...
Here is the C program to replace lowercase vowels to uppercase in a string #include<stdio.h> #include<conio.h> void main() { char str[200]; int i=0; ...
Here is the C program to find the sum of all digits of number. #include<stdio.h> #include<conio.h> int sumdig(int n); void main() { int n,s; clrscr(); ...
Here is the C Program to find square root of the enter number. Here the in built function is used for that the header file math.h is included. #include<stdio.h> #include<conio.h> #include<math.h> void main() { ...