KodeGod.com

036. Technical interview question: Give the output of following code

int main()
{
int x = 10;
   while( x --> 0 ) 
   {
      printf("%d ", x);
   }
printf("\n");
}