📚 Practice Mode

C Programming - 2

Learn at your own pace with hints and detailed explanations

1 / 50
Multiple Choice

What is the value of variable POLYGON?
main()
{
int POLYGON, L, B; L=B =2; POLYGON = (L==B) ? 1 : 0;
}

  1. 0
  2. 1
  3. 2
  4. None of the above