Posted in C Programming

Program to enter your age and display the same

/* this is just the demo C program */
#include<stdio.h>
#include<conio.h>
void main()
{
	int age;
	clrscr();
	printf("\n Enter Your Age = ");
	scanf("%d",&age);

	printf("\n your age is = %d",age);

	getch();

}

Author:

I am an Educator and YouTube Content Creator as well as a web designer and developer.

Leave a comment