// Debug2.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "BarClass.h" int _tmain(int argc, _TCHAR* argv[]) { BarClass B; B.Twiddle(); B.PrintValues(); printf("Press return to end ..."); char c; scanf("%c",&c); return 0; }