Note: (Restricted functionality due to obvious reasons!)
Minimal Code ( Raw-View ) :
#include<iostream.h>
#include<conio.h>
struct pid{
char c;
int idNum;
} p, p1, p2, pp34;
enum color{pink, yellow, red =32, blue, green } c1=green, c92= red , cl3= pink ;
// values : `->0 `->1 `->32 `->33 `->34
void main()
{
int i = 5;
color cl1 = green;
cout<<"Color value cl1: "<<cl1 << endl;
cout<<"Color value c1: "<<c1 << endl;
cout<<"Color value cl3: "<<cl3 << endl;
cout<<"Color value c92: "<<c92 << endl;
p.c = 'S'; p.idNum = 232;
cout<<"\n Person 1 id : "<< p.c << p.idNum;
//getch();
}