sheldonwaid7220 sheldonwaid7220 08-02-2024 Computers and Technology contestada Is this loop for (b = 0; b < 255; ++b) cout << "B value is [" << b << "] n"; functionally the same as this loop for (b=0; b < 255;) cout << "B value is [" << b++ << "] n";? 1) True 2) False