KodeGod.com

013. Technical interview question: Give the output of this code

 
int main()
{
   int i;
   for(i=0;i<5;i++)
   {
     int i = 10;  
     printf("%d", i);
   }
   return (0);
}