Computer Science, asked by hemareddy372, 5 months ago

6.5 Write a program to demonstrate nested for loops.​

Answers

Answered by deviteja24
1

Answer:

Example of nested while loop

#include <stdio.h>

int main()

{

int rows; // variable declaration.

int columns; // variable declaration.

int k=1; // variable initialization.

printf("Enter the number of rows :"); // input the number of rows.

scanf("%d",&rows);

Explanation:

Mark me as a brainleist

Similar questions