0_0_26507723_8892.cpp: In function 'int reverse(int*, int)':
0_0_26507723_8892.cpp:15:29: error: 'i' was not declared in this scope
int k=Array[i];Array[i]=Array[len-i-1];Array[len-i-1]=k;
^
0_0_26507723_8892.cpp:15:62: error: 'k' was not declared in this scope
int k=Array[i];Array[i]=Array[len-i-1];Array[len-i-1]=k;
^
0_0_26507723_8892.cpp:16:12: error: invalid conversion from 'int*' to 'int' [-fpermissive]
return Array;
^
0_0_26507723_8892.cpp: In function 'int main()':
0_0_26507723_8892.cpp:30:10: error: incompatible types in assignment of 'int' to 'int [1010]'
A=reverse(A,len1);
^
0_0_26507723_8892.cpp:31:10: error: incompatible types in assignment of 'int' to 'int [1010]'
B=reverse(B,len2);
^
|