|
|
main.cpp:19:13: warning: flexible array members are a C99 feature [-Wc99-extensions] int arr[]; ^ main.cpp:53:38: warning: unused parameter 'a' [-Wunused-parameter] int Search_Dynamic_Array::getSum(int a[]) ^ main.cpp:57:9: warning: variable 'sum' is uninitialized when used here [-Wuninitialized] sum +=arr[i]; ^~~ main.cpp:55:12: note: initialize the variable 'sum' to silence this warning int sum; ^ = 0 main.cpp:63:38: warning: unused parameter 'a' [-Wunused-parameter] int Search_Dynamic_Array::getMed(int a[]) ^ main.cpp:76:16: warning: variable length arrays are a C99 feature [-Wvla-extension] int s=1, a[s]; ^ main.cpp:76:16: note: read of non-const variable 's' is not allowed in a constant expression main.cpp:76:9: note: declared here int s=1, a[s]; ^ 5 warnings generated. |
|
|