Latest C Aptitude Question SOLUTION: Q. What will be the result of the following code? #define TRUE 0 // some code while(TRUE) { // some code } A. This will not go into the loop as TRUE is defined as 0.