✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
When is variable n initialized and how many times during program execution?#include <iostream> void Counter(){ static int n = 0; std::cout << ++n << " ";} int main(){ Counter(); Counter(); Counter();}