📚 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;
}
- 0
- 1
- 2
- None of the above
C Programming - 2
Learn at your own pace with hints and detailed explanations
What is the value of variable POLYGON?
main()
{
int POLYGON, L, B; L=B =2; POLYGON = (L==B) ? 1 : 0;
}