A lab where conditional concepts of C programming language such as if-else, ternary operator, and switch-case are practiced and solved with examples and problems.
This program is check a given no is Positive ,negative or zero using if-else-ladder. #include<stdio.h> #include<conio.h> int main() { int num; printf("This program ...