Tagged: If-else statement
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 in which we have to find the minimum number between two numbers using if-else statement. #include<stdio.h> #include<conio.h> void main() { int a,b; ...
Here is the C program to find maximum between two numbers using the if-else statement #include<stdio.h> #include<conio.h> void main() { int a,b; clrscr(); ...