What is the output of C program?

int main()
{
      int a=25;
       while(a<=27)
       {
               printf("%d",a);
               a++;
       }
       return 0;
}

Posted on by