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# - The item with identity 'Id' already exists in the metadata collection. Parameter name: item -

sql - PostgreSQL automatically update row at specific date -

jsp - No mapping found for HTTP request with URI with annotation config Spring MVC and Jetty -