Tech Study

C program to detrermine a candidate’s age is eligible for casting the vote or not

Introduction

C program to detrermine a candidate’s age is eligible for casting the vote or not. I have used DEV-C++ compiler for debugging purpose. But you can use any C programming language compiler as per your availability.

#include <stdio.h>

int main()
{
    int Candiateage;

    printf("Input the age of the candidate : ");
    scanf("%d", &Candiateage);

    if (Candiateage < 18)
    {
        printf("Sorry, You are not eligible to caste your vote.\n");
        printf("You would be able to caste your vote after %d year.\n", 18-Candiateag);
    }

    else
    {
        printf("Congratulation! You are eligible for casting your vote.\n");
    }
    return 0;

}

Result

C program to detrermine a candidate's age is eligible for casting the vote or not
C program to detrermine a candidate’s age is eligible for casting the vote or not

TaggedC program to detrermine a candidate's age is eligible for casting the vote or not

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more