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

Explain threaded binary trees?

0 Answers  


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


how to find the size of the data type like int,float without using the sizeof operator?

13 Answers  


Explain what is the difference between a string and an array?

0 Answers  


What is typeof in c?

0 Answers  






Which of these functions is safer to use : fgets(), gets()? Why?

0 Answers  


how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.

3 Answers  


Famous puzzles which are generally asked by companies during interviews ?

1 Answers   3D PLM, Yahoo,


A program to write a number of letters and numbers, such as counting and display

0 Answers  


#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?

6 Answers   NDS,


can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).

1 Answers  


What are pointers in C?

5 Answers   KPIT,


Categories