Sunday, December 18, 2022

C Programming. To do arithmetic operation using switch case.

 

To do arithmetic operation using switch case.




The output should be like this.....

                Enter the first number : 5
                Enter the second number : 2
                Enter the operator : +
                Ans = 7

No comments:

Post a Comment

Selection Sort Using C programming.

Selection sort is a simple and efficient sorting algorithm that works by repeatedly selecting the smallest (or largest) element from the un...