Nested if-else
C Programming Language / Decision Making of C Language
1041Program:
#include"stdio.h" int main() { int age; printf("Please Enter Your Age Here:\n"); scanf("%d",&age); if ( age < 18 ) { printf("You are Minor.\n"); printf("Not Eligible to Work"); } else { if (age >= 18 && age <= 60 ) { printf("You are Eligible to Work \n"); printf("Please fill in your details and apply\n"); } else { printf("You are too old to work as per the Government rules\n"); printf("Please Collect your pension! \n"); } } return 0; }
Output:
Please Enter Your Age Here: 55 You are Eligible to Work Please fill in your details and apply Press any key to continue . . .
This Particular section is dedicated to Programs only. If you want learn more about C Programming Language. Then you can visit below links to get more depth on this subject.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS