What is the output of the following code?

int main()
{
   char sook=4;
   while(sook < 5)
   {
     printf("%d",sook);
      sook--;
  }
}

Posted on by