visual c++ - syntax error : missing ';' before ')' -


i have nested loop , getting error, far know dont need ';' in section of code

    while ( infile >> location >> elevation >> precipamount ) {      (count, count <= 12, count ++) 

i getting error after last close parentheses.

your for loop has syntax errors, note semi colons instead of commars:

for (count; count <= 12; count ++) 

Comments

Popular posts from this blog

Capture and play voice with Asterisk ARI -

c++ - Can not find the "fiostream.h" file -

visual studio - Installing Packages through Nuget - "Central Directory corrupt" -