What is the output of the following code?
int main()
{
int a=25;
while(a = 27)
{
printf("%d ", a);
a++;
}
return 0;
}

Posted on by