KodeGod.com

030. Technical interview question: Give the output the following code

#include<stdio.h>
int main()
{
   static int i;
   for(++i;++i;++i)
   {
      printf("%d ",i);
      if(i==4) break;
   }
return 0;
}