C examples for Statement:for
Using dependent nested for loops
#include <stdio.h> int main(void) { const int ROWS = 6; const int CHARS = 6; int row;/*from w ww . ja va2 s . c o m*/ char ch; for (row = 0; row < ROWS; row++) { for (ch = ('A' + row); ch < ('A' + CHARS); ch++) printf("%c", ch); printf("\n"); } return 0; }