Hi Experts,
I am going through the programming. I received an error message which I do not understand.
The screenshot of the message is here. If you have any idea about this message please let me know. I am really anxious for the error message.
Thanks in advance.
Â
Build
Â
Program: 22252 bytes (34.0% Full)
(.text + .data + .bootloader)
Â
Data: 1025 bytes (12.5% Full)
(.data + .bss + .noinit)
Â
Â
Errors: none
———— end ————–
Â
Build succeeded with 0 Warnings…
I am really anxious for the error message
Â
Hi Jerry,
It is not an error message that you received. It is just a message to say that there were no errors. Every programming language editor has this row. it shows whether there were any errors in the program that you typed or not. If there are any errors then it displays the error that occurred. Some of the programming language editors even show the line number and character number of the error that occurred.
The error row is a very important tool as it shows you where you have made a mistake. You can easily rectify the error so as to build the program successfully. As you can see, in your program there are no errors. So the error message reads "Errors: None". So you do not need to worry about it. If there are any errors then it displays them and you can rectify them.
Hope this information helps you.
Â
I am really anxious for the error message
The screenshot you have provided shows that the code you are compiling does not have any errors. The code you have compiled is clean and therefore no warnings. If your code had errors, you would have had a message telling you that the code has one or more warnings.