// struct.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "iostream.h" struct REC { int x; float y; char letter; }emp1, emp2; void compute_gross_pay() { } void compute_net_pay() { } int _tmain(int argc, _TCHAR* argv[]) { emp1.x = 12; emp1.y = 22.5; emp1.letter = 'a'; cout << "enter x for employee two: " << endl; cin >> emp2.x; cout << "enter y for employee two: " << endl; cin >> emp2.y; cout << "enter a letter for employee two: " << endl; cin >> emp2.letter; return 0; }