Multiple Choice
What is the output of the following code fragment?
Int x=0;
{
Int x=13;
Cout << x <<",";
}
Cout << x << endl;
A) 13,13
B) 0,13
C) 13,0
D) nothing, there is a syntax error.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q17: _ is a type whose values are
Q18: Which of the following is not a
Q19: Which of the following are valid case
Q20: A switch statement variable must be _
Q21: All nested if-else statements can be converted
Q23: In an enumerated data type, different constants
Q24: How many times is "Hi" printed to
Q25: Which of the following are equivalent to
Q26: What is wrong with the following for
Q27: What is the output of the following