Q:

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

0

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

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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:

Input the age of the candidate :16

Sorry, You are not eligible to caste your vote.

You would be able to caste your vote after 2 year.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C program to find the eligibility of admission for... >>
<< C program to accept two integers and check whether...