What is meant by errors and debugging?



What is meant by errors and debugging?..

Answer / Joydeep Ghosh

Errors are mistakes or inaccuracies in a program that prevent it from functioning correctly. Debugging refers to the process of identifying, understanding, and resolving these errors so that the program can run as intended.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

write a program of bubble sort using pointer?

3 Answers   TCS,


What does != Mean in c?

1 Answers  


In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?

5 Answers  


main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?

5 Answers   TCS,


Explain what is meant by high-order and low-order bytes?

1 Answers  


What is the correct declaration of main?

1 Answers  


What is meant by recursion?

1 Answers   ADP,


What is difference between %d and %i in c?

1 Answers  


Write a program to print "hello world" without using a semicolon?

1 Answers  


write a c program to accept a given integer value and print its value in words

4 Answers   Vernalis, Vernalis Systems,


Explain union. What are its advantages?

1 Answers  


What are formal parameters?

1 Answers  


Categories