for loop - Unknown "for" statement (C) -


I came across this as browsing through a foreign code:

 for  ( i = 0; i   

The following code is valid

  for (i = 0; i & lt; len; i ++, j ++);   

and is equal to

 for  (i = 0; i   

which is equivalent to

  // Note- There is no Jammu after i ++; For (i = 0; i   

So there is no need to write J in your statement. Jammu has written for you (Statement), there is no function in it. Therefore, this program can be left without being effective.

Note- The following codes are valid and do not give any errors, but this is meaningless.

  10;    

Comments

Popular posts from this blog

c++ - Cmake produces file extensions in static library archives -

c# - Roxy file manager in MVC doesn't accept session path -

c# - XML - Serialize class - Some questions -