0
#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.

dbush
  • 205,898
  • 23
  • 218
  • 273

0 Answers0