6.5 Write a program to demonstrate nested for loops.
Answers
Answered by
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
Accountancy,
3 months ago
Social Sciences,
3 months ago
History,
3 months ago
English,
8 months ago
Math,
8 months ago
Physics,
11 months ago
Physics,
11 months ago
Math,
11 months ago