Question #17: What value is printed out for the variable x? 61% on 1953 times asked
#include <iostream> int x; int main() { int y; std::cout << x << std::endl; std::cout << y << std::endl; return 0; }