How can c let a function declaration with any parameter type ?
- by kamil çakir
it lets this function declaration
print(int size,int table[size][size]){
int i,j;
printf("-------TABLE-------\n");
for(i = 0;i
gives error in this situation
44 C:\Users.. previous implicit declaration of 'print' was here
(print(size,table); call in main)
void print(int size,int table[size][size]){
int i,j;
printf("-------TABLE-------\n");
for(i = 0;i