0_0_31411834_630.c: In function 'main':
0_0_31411834_630.c:9:1: error: expected expression before '/' token
// printf("Get case count %d \n",casecount);
^
0_0_31411834_630.c:14:1: error: expected expression before '/' token
// printf("Current case is %d\n",i);
^
0_0_31411834_630.c:16:1: error: expected expression before '/' token
// printf("Initializing a %d submember array\n",len);
^
0_0_31411834_630.c:19:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j=0;j<=len;j++){
^
0_0_31411834_630.c:19:3: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
0_0_31411834_630.c:22:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int m=0;m<=(len);++m){
^
0_0_31411834_630.c:23:1: error: expected expression before '/' token
// printf("Array %d is %d\n",m,array[m]);
^
0_0_31411834_630.c:28:1: error: expected expression before '/' token
// printf("Get new max value %d at position %d\n",max,position+1);
^
0_0_31411834_630.c:34:3: error: expected ';' before 'free'
free(&array);
^
|