Going through an Enumerated ListGotcha, guess I was overly excited about the type casting solution working. Many thanks webJose. F...
Going through an Enumerated ListBig time kudos on the [code]dayOfWeek = (DayNames)count;[/code] I had a feeling typecasting was nece...
1+1 and 1+100, theoretically, is there any execution speed difference?I believe they use bitwise operators. Example: [code]int a = 3; // a=0000011 a = a<<1; // a=0000110...
GUI coding intro tutorial[quote]I have just completed a Introduction to C++ class and all we did was work in the console. I w...
Going through an Enumerated ListWhen I try the following: [code]enum DayNames {Sunday, Monday, Tuesday, Wednesday, Thursday, Friday,...