No, indenting is not the same as including line numbers. Indenting is moving a line of text to the right relative to the line above it.What do you mean by indent your code. does it means include numbers for each lines. I have posted code with lines and numbers. you can see error in line number. can you tell me what you all telling me about indent code?
The line numbers of the code you posted clearly are NOT the same as the line numbers that the errors are using.
This is particularly evident in the two code blocks you posted in Post #8. What line is the main() declaration on? In the top block it is on line 54 while in the bottom block it is on line 1. But neither of these are the line it is on in the file that the compiler is working with, probably because you have stuff in the file that is above the first line that you have in your block.