Dev C++ Nested If
Writing a loop inside another loop is known as nested loop. Maximum level of nesting allowed in C++ is 256. We can write while
, do..while
, for
and range based for loop in a nested loop.
Nested While Loop
The syntax of nested while loop is shown below
Write a C program which when compiled and run, prints out a message indicating whether the compiler that it is compiled with, allows /./ comments to nest. The solution to this problem is given below:- Sol:- you can have an integer variable nest: int nest = /././0././1; if it supports nested comments then the answer is 1 else answer is 0. C nested if statements It is always legal to nest if-else statements, which means you can use one if or else if statement inside another if or else if statement(s).
Below is an example of nested while loop
Below is the output of above program
i = 0 and j = 0
i = 0 and j = 1
i = 0 and j = 2
i = 0 and j = 3
i = 0 and j = 4
i = 1 and j = 0
i = 1 and j = 1
i = 1 and j = 2
i = 1 and j = 3
i = 1 and j = 4
i = 2 and j = 0
i = 2 and j = 1
i = 2 and j = 2
i = 2 and j = 3
i = 2 and j = 4
This setup guide explains how to set up TRAKTOR SCRATCH PRO for Timecode control from two external turntables or CD players when using a TRAKTOR KONTROL S4. Make sure that TRAKTOR SCRATCH PRO 2 is installed and activated on your computer (TRAKTOR PRO 2 does not support Timecode control as explained in this article). Mar 09, 2012 50+ videos Play all Mix - Traktor Pro Guide - Preferences Pt 1/4: Audio Setup + Timecode Configuration YouTube 5 Crucial Settings in Traktor Pro 2 - Duration: 8:21. DJ TechTools 527,639 views. Traktor scratch download.
Nested Do-While Loop
The syntax of nested do…while loop is shown below
Below is an example of nested do…while loop
Below is the output of above program
i = 0 and j = 0
i = 0 and j = 1
i = 0 and j = 2
i = 0 and j = 3
i = 0 and j = 4
i = 1 and j = 0
i = 1 and j = 1
i = 1 and j = 2
i = 1 and j = 3
i = 1 and j = 4
i = 2 and j = 0
i = 2 and j = 1
i = 2 and j = 2
i = 2 and j = 3
i = 2 and j = 4
Nested For Loop
The syntax of nested for loop is shown below
Below is an example of nested for loop
Below is the output of above program
Dev C++ Nested If Java
i = 0 and j = 0
i = 0 and j = 1
i = 0 and j = 2
i = 0 and j = 3
i = 0 and j = 4
i = 1 and j = 0
i = 1 and j = 1
i = 1 and j = 2
i = 1 and j = 3
i = 1 and j = 4
i = 2 and j = 0
i = 2 and j = 1
i = 2 and j = 2
i = 2 and j = 3
i = 2 and j = 4
Nested Range-Based For Loop
The syntax of nested range-based for loop is shown below
Below is an example of nested for loop
C Nested If Else Statement
Below is the output of above program
Dev C Nested If Java
i = 0 and j = 0
i = 0 and j = 1
i = 0 and j = 2
i = 0 and j = 3
i = 0 and j = 4
i = 1 and j = 0
i = 1 and j = 1
i = 1 and j = 2
i = 1 and j = 3
i = 1 and j = 4
i = 2 and j = 0
i = 2 and j = 1
i = 2 and j = 2
i = 2 and j = 3
i = 2 and j = 4