what is run time error?

Answers were Sorted based on User's Feedback



what is run time error?..

Answer / sudha rani

An error that occurs during the execution of a program. In
contrast, compile-time errors occur while a program is
being compiled. Runtime errors indicate bugs in the program
or problems that the designers had anticipated but could do
nothing about. For example, running out of memory will
often cause a runtime error.
A runtime error is a computer error that appears in
the form of a message box consisting of a particular code
along with its corresponding definitions. Usually, a user
will notice that the computer becomes noticeably slow
before a runtime error appears.

After the runtime error message has been displayed and
closed, the software that shows this error would normally
close or freeze. In some cases, the operating system will
reboot.

Is This Answer Correct ?    8 Yes 2 No

what is run time error?..

Answer / venkat

run time error is the error which notify at the run time of
the program

Is This Answer Correct ?    3 Yes 0 No

what is run time error?..

Answer / sandeep palav

a run time error is a logical error....
it can be infinite looping, division by zero or an arrray
overflow.
such errors can be managed with implementing the exception
handling concept.

Is This Answer Correct ?    3 Yes 0 No

what is run time error?..

Answer / vipin bhatia

no doubt run time error occur while runtime.. but when the
execution of program take place and we enter input max then
limit or answer reach upto max data type lime , error
occured also known run time error....

Is This Answer Correct ?    2 Yes 0 No

what is run time error?..

Answer / santhosh

UsUally c program!THEY are two types?
complie!and run time?
compile means high level language&low level language into
middile level langage!this is complier!run time is program
code convert into machine code(binarys)some code are not
accept machine code!that also become runtime erroe!

Is This Answer Correct ?    0 Yes 0 No

what is run time error?..

Answer / ramya

During execution of the program the error will occur.it
produce wrong result and also go to main program

Is This Answer Correct ?    0 Yes 1 No

what is run time error?..

Answer / kalyank_msg

Run time error is occured only at runtime / execution time,
when we give the invalid input.

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More C C++ Errors Interview Questions

Write a C program to enter 10 integer numbers through one variable and count how many of them are even using while loop ?

2 Answers  


write the value of x and y after execution of the statements: int x=19,y; y=x++ + ++x; x++; y++;

0 Answers  


what is exceptions?

5 Answers   HCL, Wipro,


How to develop a program using C language to convert 8-bit binary values to decimals. TQ

1 Answers   Amazon,


Write a c-programe that input one number of four digits and find digits sum?

2 Answers  






void main() { int i=5; printf("%d",i+++++i); }

14 Answers   HCL,


what is syntax error?

3 Answers  


what is run time error?

7 Answers  


#include<>stdio.h> #include<>conio.h> { printf("hello"); void main() getch(); } what the out put of this program and why ......plz clear my answer

10 Answers   Wipro,


what is meant by linking error? how can i solve it? if there is a linking error " unable to open file 'cos.obj'? then what should i do?

1 Answers  


How to create a program that lists countries capitals when country is entered? (Terribly sorry, I'm a complete novist to coding with C, am looking for inspiration and general tips on how to code and create this program.)

0 Answers  


Using string functions write a program that will accept the name of the capital as input value and will display the corresponding country. ------------------------ Capitals Countries ------------------------ Capitals Countries Ottawa Canada Moscow Russia Rome Italy I can't not get it to run properly

1 Answers   AMA,


Categories