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 |
write a program of bubble sort using pointer?
What does != Mean in c?
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?
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?
Explain what is meant by high-order and low-order bytes?
What is the correct declaration of main?
What is meant by recursion?
What is difference between %d and %i in c?
Write a program to print "hello world" without using a semicolon?
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?
What are formal parameters?