Interview Questions

WHat will be the result of the following code?

C Interview Questions and Answers


(Continued from previous question...)

WHat will be the result of the following code?

WHat will be the result of the following code?

#define TRUE 0 // some code

while(TRUE)
{

// some code
}



Answer: This will not go into the loop as TRUE is defined as 0.

(Continued on next question...)

Other Interview Questions