1#version 400 2void main() { 3 int c = 0; 4 for (int i = 0;((i < 4 || c < 10) && true); ++i) { 5 c += 1; 6 } 7} 8