// con1.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include using namespace std; int main() { int a; double x; a = 3.2; x = 3.2; a = x; x = a = 3.2; return 0; }