Posts: 601
Threads: 74
Joined: Sep 2009
Reputation:
0
for(secsd;secsd>60;minsd++)
this is warning:
warning 215: expression has no effect
plz help me
Posts: 601
Threads: 74
Joined: Sep 2009
Reputation:
0
fixed!!
for(tick;tick>1000;secsd++)
should be
for(;tick>1000;secsd++)
Posts: 182
Threads: 15
Joined: Sep 2009
Reputation:
0
It depends if you have already declared the variable tick.
Posts: 76
Threads: 31
Joined: Jul 2010
Reputation:
0
maybe you must declare as new variable?
for(new secsd;secsd>60;minsd++)