Constants

Q

WHat will be the result of the following code?

          #define TRUE 0 // some code
          while (TRUE) {
              // some code
          }

✍: FYIcenter

A

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

2007-02-26, 6727👍, 0💬