#include main() { int i,j; clrscr(); for (i=0,j=10;i<=10 ;i++,j--) { printf("%2d + %2d = %2d\n",i,j,i+j); } getch(); }