0_0_34048470_16646.c:4:1: error: unknown type name 'using'
using namespace std;
^
0_0_34048470_16646.c:4:17: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'std'
using namespace std;
^
0_0_34048470_16646.c:7:15: error: variably modified 'P' at file scope
int count=0,n,P[maxn],hashTable[maxn]={false};
^
0_0_34048470_16646.c:7:23: error: variably modified 'hashTable' at file scope
int count=0,n,P[maxn],hashTable[maxn]={false};
^
0_0_34048470_16646.c:7:40: error: 'false' undeclared here (not in a function)
int count=0,n,P[maxn],hashTable[maxn]={false};
^
0_0_34048470_16646.c: In function 'fullPermutation':
0_0_34048470_16646.c:14:2: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i = 1; i <= n; i++) {
^
0_0_34048470_16646.c:14:2: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
0_0_34048470_16646.c:16:4: error: unknown type name 'bool'
bool flag = true;
^
0_0_34048470_16646.c:16:16: error: 'true' undeclared (first use in this function)
bool flag = true;
^
0_0_34048470_16646.c:16:16: note: each undeclared identifier is reported only once for each function it appears in
0_0_34048470_16646.c:17:4: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j = 1; j <= index - 1; j++) {
^
0_0_34048470_16646.c: In function 'main':
0_0_34048470_16646.c:34:2: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i = 1; i < 11; i++) {
^
|