Stuff
public cpp v1 · immutable float mm = 0.4; float nn = 2.8; int xx = 3; float c1 = (mm * xx + nn); int c2 = c1; cout << "c1: " << c1 << endl; cout << "c2: " << c2 << endl; float mm = 0.4; float nn = 2.8; int xx = 3; float c1 = (mm * xx + nn); int c2 = c1; cout << "c1: " << c1 << endl; cout << "c2: " << c2 << endl;