#include int main(void){ int i; /* this loop will not execute */ for(i = 11; i < 11; i = i + 1) printf("%d ", i); printf("terminating"); return 0;}