0
struct array
https://code.sololearn.com/cAyq30Y03Q8o/#cpp compile error: string error ... I cannot solve it..
1 Resposta
0
In line 13
SAM a = {"kim". "010-1111-1111"};
Note that you used dot after "kim". You should use comma separator instead
Like this
SAM a = {"kim", "010-1111-1111"};