logoISU  

CS256 - Principles of Structured Design

Fall 2021

Displaying ./code/cs256su21code/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;
}