Microcontroller Embedded C Programming Lecture 93| Switch case statement in ‘C’
Switch case statement in 'C' In this article, let's discuss the switch/case statement. Switch case statement in 'C' Switch/case statement is one of the decision making…
Switch case statement in 'C' In this article, let's discuss the switch/case statement. Switch case statement in 'C' Switch/case statement is one of the decision making…
Conditional operator Conditional operators in C Conditional operator is a ternary operator in C used for conditional evaluation. It is a powerful tools in C programming for…
'if-else-if' ladder exercise solution In this article, let's code a calculating tax exercise. The exercise is Write a program to calculate the income tax payable of the…
'if-else-if' ladder exercise In this article, let's do one exercise using an if-else-if ladder. Exercise: Write a program to calculate the income tax payable of the…
'if -else-if' ladder statements The 'if-else-if' ladder in C is a powerful control structure that allows you to evaluate multiple conditions sequentially and execute code based on…
'if' and 'else' exercise implementation part-3 'if' and 'else' exercise In the previous article, we broke our application by entering a character. Let's try to solve this…