#include<stdio.h>
int main()
{
    int i=0;
    while(i<4,5)
    {
        printf("loop");
        i++;
    }
    return 0;
}
The answer is an infinite loop. I can't understand how two expressions work in while loop without any logical operators.
 
    