There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?


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

Post New Answer

More C Interview Questions

what is the function of void main()?

8 Answers  


size maximum allocated by calloc()

3 Answers   DELL,


All technical questions

0 Answers   TCS,


Write a function to find the area of a triangle whose length of three sides is given

2 Answers  


Can we change the value of static variable in c?

0 Answers  


main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?

9 Answers   BTBP, CitiGroup,


Explain how can I write functions that take a variable number of arguments?

0 Answers  


Give me basis knowledge of c , c++...

5 Answers  


to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?

0 Answers  


If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???

3 Answers   Amdocs, IBM,


What is key word in c language?

4 Answers   ABC,


main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail

6 Answers   TCS,


Categories