Login
Remember
Register
Q&A
Questions
Ask a Question
What is a nested loop?
Home
>
Technology
>
What is a nested loop?
0
votes
asked
Nov 8, 2020
in
Technology
by
JackTerrance
(
1.7m
points)
What is a nested loop?
interview-question-answer
technology-questions-answers
Facebook
Twitter
LinkedIn
Email
Add Answer
1
Answer
0
votes
answered
Nov 8, 2020
by
JackTerrance
(
1.7m
points)
A loop that runs within another loop is referred to as a nested loop. The first loop is called the Outer Loop and the inside loop is called the Inner Loop. The inner loop executes the number of times defined in an outer loop.
Related questions
+1
vote
1
answer
What is the correct code to have the following output in C using nested for loop?
asked
Nov 8, 2020
in
Technology
by
JackTerrance
(
1.7m
points)
interview-question-answer
technology-questions-answers
+1
vote
1
answer
What is a nested structure in C-Programming?
asked
Nov 9, 2020
in
Technology
by
JackTerrance
(
1.7m
points)
interview-question-answer
technology-questions-answers
+1
vote
1
answer
What is the code in a while loop that returns the output of the given code?
asked
Nov 8, 2020
in
Technology
by
JackTerrance
(
1.7m
points)
interview-question-answer
technology-questions-answers
0
votes
1
answer
What are the general description for loop statements and available loop types in C?
asked
Nov 8, 2020
in
Technology
by
JackTerrance
(
1.7m
points)
interview-question-answer
technology-questions-answers
+1
vote
1
answer
What is an infinite loop in C-Programming?
asked
Nov 9, 2020
by
JackTerrance
(
1.7m
points)
#c-programming
...