CP DML Q36

0. The body of the following for loop
  for( putchar( 'a' ); putchar (0); putchar (' c ') ) putchar ( 'b') ;
will be executed

  • Option : A
  • Explanation :
    The condition is putchar (0). This returns a value 0 which is a false condition.
    So, the loop will not be executed even once.
Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *