Тема: Що виведе функція в С++
Що виведе ця функція і чому
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int(main) {
int c = 5;
int a = c++;
int b = ++c;
cout << “a = “ << a << endl;
cout << “b = “ << b << endl;
return 0;
}