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