//this is a program to display the spellings of numbers #include<stdio.h> #include<conio.h> void main() { int num; pr...
Read More
Showing posts with label Switch. Show all posts
Showing posts with label Switch. Show all posts
Write a Program to check positive , negative , even or odd using switch case
//this is a program to use switch case #include<stdio.h> #include<conio.h> void main() { int num, choice; printf(...
Read More
Write a Program to perform even odd or sum using switch case
/* Program to perform even odd or sum */ #include<stdio.h> #include<conio.h> void main() { int num1,num2,choice; ...
Read More
Write a Program to find whether the entered number is Vowel or Consonant using switch statement
//This is a Program to find whether the entered number is Vowel or Consonant using switch statement #include<stdio.h> #include<c...
Read More
Write a program to perform the operations as per the user's choice using Switch Case
//this is a program to perform the operations as per the user's choice #include<stdio.h> #include<conio.h> void main() ...
Read More
Subscribe to:
Posts (Atom)