I wrote this program that will ask the user to give its age and then the program will check and determine whether the given age of the user is already an adult or still a minor using C programming language.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.
My Facebook address is https://www.facebook.com/profile.php?...
My personal website is http://www.jakerpomperada.com
My programming website is http://www.jakerpomperada.blogspot.com
I am also a book author you can purchase my books on computer programming and information technology in the following links below.
Thank you very much for your help and support.
Sample Program Output
Program Listing
legal_age.c
#include <stdio.h>
int main()
{
int age=0;
printf("\n\n");
printf("\tLegal Age Checker in C");
printf("\n\n");
printf("\tGive your Age? ");
scanf("%d",&age);
if (age>=18) {
printf("\n");
printf("\tAt the age of %d you are already an Adult.",age);
} else {
printf("\n");
printf("\tAt the age of %d you are still a Minor.",age);
}
printf("\n\n");
printf("\tEnd of Program");
printf("\n");
}