Given: Which two declarations will compile?
A.
int d, e, F;
B.
int a, b, c = 0;
C.
int k, l, m; = 0;
D.
int a, b, c;
E.
int g, int h, int i = 0;
Given: Which two declarations will compile?
A.
int d, e, F;
B.
int a, b, c = 0;
C.
int k, l, m; = 0;
D.
int a, b, c;
E.
int g, int h, int i = 0;
i think A & D are correct ?
a,b and d.
in b is fine to initialize c=0
D) won’t compile as the a,b and c were previously defined as int a,b,c = 0;