Question:What will be the output of following code?
int main()
   {
      int i;
      i = 0;
      for (i = 1; i <2; i++)
      {
          i++;
          printf( "%d", i );
          continue;
          printf( "%d", i );
      }
      return 0;
   }
 

A 22 

B 2,2 

C 2 

D 0 

E None 

+ Answer
+ Report
Total Preview: 562

Copyright © 2024. Powered by Intellect Software Ltd