How does placing some code lines between the comment symbol help in debugging the code?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

differnce between do and do while

3 Answers   DOEACC,


What is the benefit of using an enum rather than a #define constant?

0 Answers  


write a program which counts a product of array elements lower than 10.

1 Answers  


where do we use structure pointer?

1 Answers  


How to establish connection with oracle database software from c language?

0 Answers  






Explain what is the use of a semicolon (;) at the end of every program statement?

0 Answers  


Add Two Numbers Without Using the Addition Operator

0 Answers  


#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }

14 Answers   CDAC, GATE, NDS, TCS,


Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static 1. Which of the Following Statements are true w.r.t Bit- Fields A)a,b&c B)Only a & b C)Only c D)All

3 Answers   Accenture,


prog for 1st five prime numbers in 2^x - 1

0 Answers  


When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?

0 Answers  


write a programe to find the factorial of given number using recursion

3 Answers  


Categories