What is the output of the following code? #include using namespace std; int main() { int main; main = 100; cout << main++ << endl; system("pause"); }2/25What is the output of the following code? #include using namespace std; int main() { int main; main = 100; cout << main++ << endl; system("pause"); }100101nonecompile errorGiải thíchChọn đáp án A