What value is printed out for the variable x?
#include <iostream>
int x;
int main()
{
int y;
std::cout << x << std::endl;
std::cout << y << std::endl;
return 0;
}
What value is printed out for the variable x?
#include <iostream>
int x;
int main()
{
int y;
std::cout << x << std::endl;
std::cout << y << std::endl;
return 0;
}
© 2017 QuizBucket.org