How can c let a function declaration with any parameter type ?
Posted
by kamil çakir
on Stack Overflow
See other posts from Stack Overflow
or by kamil çakir
Published on 2010-03-28T20:21:35Z
Indexed on
2010/03/28
20:23 UTC
Read the original article
Hit count: 213
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
© Stack Overflow or respective owner