Question #36: What value gets printed by the program? 55% on 1598 times asked
#include <iostream> int main(int argc, char** argv) { int x; x = 1, 2, 3; std::cout << x << std::endl; return 0; }