// Debug1.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "FooClass.h" int _tmain(int argc, _TCHAR* argv[]) { FooClass fc; fc.DoCalculation1(); fc.DoCalculation2(15.9); fc.DoCalculation1(); fc.PrintNumCalculations(); printf("Press return to end ..."); char c; scanf("%c",&c); return 0; }