题目9单选题
Analyze the following code. #include <iostream> using namespace std; int main( ) { int month = 09; cout << "month is " << month; return 0; }A. The program displays month is 09B. The program displays month is 9C. The program displays month is 9.0D. The program has a syntax error, because 09 is an incorrect literal value