I got a warning:
assignment makes integer from pointer without a cast.
The line that triggers the warning is:
nev[i][0]="";
The nev variable is a 2 dimension char block(please don't ask why, I don't know).
Thanks in advance guys!
I got a warning:
assignment makes integer from pointer without a cast.
The line that triggers the warning is:
nev[i][0]="";
The nev variable is a 2 dimension char block(please don't ask why, I don't know).
Thanks in advance guys!
Copyright © 2021 Jogjafile Inc.
If
nevis a 2-dimensional array ofchar, thennev[i][0]is achar. But""is an array ofchar, not achar. – Barmarnev[i][0]="";-->nev[i][0]=0;– BLUEPIXY