c 2b 2b c2027

Solutions on MaxInterview for c 2b 2b c2027 by the best coders in the world

showing results for - "c 2b 2b c2027"
Christy
16 Sep 2020
1// C2027_b.cpp
2class A;
3A& CreateA();
4
5class B;
6B* CreateB();
7
8int main() {
9   CreateA();   // C2027
10   CreateB();   // OK
11}
12
similar questions
queries leading to this page
c 2b 2b c2027