#include int main(){ int i = 1; loop_top: printf("%d squared is %d\n", i, i*i); i++; if(i <= 10) goto loop_top; return 0; }