include using namespace std struct ThreeVals int a b c int m
#include using namespace std; struct ThreeVals {int a; b; c; int main() {ThreeVals vals = {1, 2, 3); cout
Solution
4) struct ThreeVals
{
int a;b;c;
};
A) b does not name a type.
B) c does not name a type.
ThreeVals vals={1,2,3};
C) too many initializers for ThreeVals.
cout<<vals<<endl;
d) cannot bind std::ostream lvalue to \'std::basic_ostream<char>&&\'.
5)
include <iostream>
\'include\' does not name a type.
int main()
{
TwoVals v;
cout<<v.a<<\" \"<<v.b;
return 0;
}
\'cout\' was not declared in this scope.
6)
int main()
{
TwoVals varray[10];
varray.a[0]=1;
return 0;
}
error: request for member \'a\' in \'varray\', which is of non-class type.
