✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
7. What is the output of the following code snippet?
#include <iostream>
int main() {
int a = 5;
std::cout << a++ << std::endl;
return 0;
}