Main.cc: In function 'int main()':
Main.cc:11:2: error: expected ';' before 'cin'
cin>>b[1000];
^
Main.cc:13:16: error: cannot convert 'int*' to 'const char*' for argument '1' to 'size_t strlen(const char*)'
int s=strlen(a);
^
Main.cc:14:17: error: cannot convert 'int*' to 'const char*' for argument '1' to 'size_t strlen(const char*)'
int c=strlen(b);
^
Main.cc:14:7: warning: unused variable 'c' [-Wunused-variable]
int c=strlen(b);
^