logoISU  

CS 256 - Principles of Structured Design

Summer 2021

Displaying ./code/jun07/nestedLoop.c

#include <stdio.h>

int main()
{
	for(int i = 0; i <= 10; i++){

		for(int j = i; j >= 0; j--){
			printf("%d ", j);
		}
		printf("\n");
	}
	return 0;
}