Return to Snippet

Revision: 53971
at December 4, 2011 08:24 by javageget


Initial Code
if(type == 1) {
		    strcpy_s(CAR_TYPE,"CAR");

	     } else if(type == 2) {
		    strcpy_s(CAR_TYPE,"MPV");

	     } else if(type == 3) {
		    strcpy_s(CAR_TYPE,"TRUCK");

	     } else if(type == 4) {
		    strcpy_s(CAR_TYPE,"VAN");

	     } else if(type == 5) {
		    strcpy_s(CAR_TYPE,"BUS");

	     } else {
		    strcpy_s(CAR_TYPE,"UNKNOWN?");
	     }

Initial URL


Initial Description
giler

Initial Title
Fix Mechie IF..ELSE

Initial Tags


Initial Language
C++