/in/foo.cc:2:7: error: expected nested-name-specifier before 'namespce'
using namespce std;
^~~~~~~~
/in/foo.cc: In function 'int sort()':
/in/foo.cc:20:1: warning: no return statement in function returning non-void [-Wreturn-type]
}
^
/in/foo.cc: In function 'int main()':
/in/foo.cc:24:2: error: 'cin' was not declared in this scope
cin >> n;
^~~
/in/foo.cc:24:2: note: suggested alternative:
In file included from /in/foo.cc:1:0:
/usr/include/c++/6/iostream:60:18: note: 'std::cin'
extern istream cin; /// Linked to standard input
^~~
/in/foo.cc:28:7: error: expected ',' before '>>' token
cin >> a[i];
^~
/in/foo.cc:28:7: error: expected identifier before '>>' token
/in/foo.cc:28:14: error: expected ']' before ';' token
cin >> a[i];
^
/in/foo.cc: In lambda function:
/in/foo.cc:28:14: error: expected '{' before ';' token
/in/foo.cc: At global scope:
/in/foo.cc:30:6: error: expected constructor, destructor, or type conversion before '(' token
sort(a);
^
/in/foo.cc:32:2: error: expected unqualified-id before 'for'
for(int i=0;i<n;i++){
^~~
/in/foo.cc:32:14: error: 'i' does not name a type
for(int i=0;i<n;i++){
^
/in/foo.cc:32:18: error: 'i' does not name a type
for(int i=0;i<n;i++){
^
/in/foo.cc:35:2: error: 'cout' does not name a type
cout >> min;
^~~~
/in/foo.cc:36:1: error: expected declaration before '}' token
}
^