C Program to find the sum of digits of the number entered.
C Program to find the sum of digits of the number with full explanation of the program. #include<stdio.h> #include<conio.h> int sumdig(int n); void main() { int n,s; ...
C Program to find the sum of digits of the number with full explanation of the program. #include<stdio.h> #include<conio.h> int sumdig(int n); void main() { int n,s; ...
Write a C Program to find the given character is vowel or consonant. This program is used to find out whether the entered character is vowel or consonant. #include<stdio.h> #include<conio.h> void main() { ...
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; ...