What is the output of the following Code?
#include <stdio.h>
void main()
{
    int i;
    for (i = 3;i<15;i+=3)  
   {
       printf ("%d",i);  
       ++i;  
    }  
}


Posted on by