Web Site Devloped By Abhishek Mishra
Tech. Help By Anand Mishra
Contact no. 9425355631

Powerd by Shree Guru Kripa Computer


Cpp_if statement Program.


This is Program of cpp_if statement. This is C++ program. There you enter your age & check. So Enjoy.



#include
#include
void main()
{
clrscr();
int a;
cout<<"\n\n\tEnter age :"; cin>>a;
((a>=18)?(cout<<"YOUNG"):(cout<<"CHILD"));
getch();
}