How can c let a function declaration with any parameter type ?
- by kamil çakir
I forgot to write void parameter but it works the i put void it gives error
it lets this:
print(int size,int table[size][size]){
int i,j;
printf("-------TABLE-------\n");
for(i = 0;i
it says"previos implicit declaration was here " (means the call in main)
void print(int size,int table[size][size]){
int i,j;
printf("-------TABLE-------\n");
for(i = 0;i