Main.cc: In function 'int main()':
Main.cc:10:3: error: expected ';' before 'b'
b[a[i]]++;
^
Main.cc:10:9: warning: array subscript has type 'char' [-Wchar-subscripts]
b[a[i]]++;
^
Main.cc:13:17: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
for(int i=97;i=123;i++){
^
Main.cc:17:3: error: expected ';' before '}' token
}
^