// confuzed.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <cmath>
struct confused
{
char handle[20];
int age;
};
int main(void)
{
using namespace std;
confused token =
{
"Confused",
19
};
cout << "Token is " << token.age << " Years old" << endl;
system("PAUSE");
return 0;
}