I am really anxious for the error message

Asked By 30 points N/A Posted on -
qa-featured

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…
SHARE
Best Answer by Julinee James
Best Answer
Best Answer
Answered By 10 points N/A #136533

I am really anxious for the error message

qa-featured

 

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.

 

Answered By 1065 points N/A #136534

I am really anxious for the error message

qa-featured

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.

Related Questions