Let Us C Solutions | C Programming | Do's & Don'ts of FOR, WHILE & DO-WHILE loops
Let us C solution of Chapter 6: More Complex Repetitions explains (in Hindi) Question asked in Chapter 6 Exercise B - Answer the following:
(a) The three parts of the loop expression in the for loop are:
the i______ expression.
the t_______ expression.
the i_______ expression.
(b) The break statement is used to exit from:
1. An if statement
2. A for loop
3. A program
4. The main() function
(c) A do-while loop is used when we want that the statements within the loop must be executed:
1. Only once
2. At least once
3. More than once
4. None of the above
(d) In what sequence the Initialization, execution of body, testing is done in a do-while loop
1. Initialization, execution of body, testing
2. Execution of body, Initialization, testing
3. Initialization, testing, execution of body
4. None of these
(e) Which of the following is not an infinite loop?
1. int i=1;
while (1)
{
i++;
}
2. for (;;);
3. int t=0, f;
while (t)
{
f=1;
}
4. int y,x=0;
do
{
y=x;
} while (x==0)
(f) Which keyword is used to take the control to the beginning of the loop?
Watch Chapter 5 of Let Us C here:
https://www.youtube.com/playlist?list=PLw9JnLoOkCHo1OCdgwNYhyYMfnmGRA-sV
Watch Chapter 4 of Let Us C here:
https://www.youtube.com/playlist?list=PLw9JnLoOkCHpowvX7Cg8uVS4qxIdSYi4c
Watch Chapter 3 of Let Us C here:
https://www.youtube.com/playlist?list=PLw9JnLoOkCHqE77BolhCIVjOU6_y3ahad
What Chapter 2 of Let Us C here:
https://www.youtube.com/playlist?list=PLw9JnLoOkCHrboTrBo6oQabtrZCGxHssK
Watch Chapter 1 of Let Us C to catch up, if you missed it:
https://www.youtube.com/playlist?list=PLw9JnLoOkCHpBYce1qLsqYH9RUu9C-tR6
The summary of this video by Techvideopedia:
0:00 Let us C solution Chapter 6 Exercise B in Hindi
0:12 Let us C solution in Hindi Chapter 6 b.a
0:42 Parts of for loop syntax
1:00 Let us C solution in Hindi Chapter 6 b.b
1:16 Use of continue and break in C
1:54 Let us C solution in Hindi Chapter 6 b.c
2:05 use of do-while loop in C programming
2:29 Let us C solution in Hindi Chapter 6 b.d
2:50 syntax of do-while loop in C explained in hindi
3:49 Let us C solution in Hindi Chapter 6 b.e
4:07 infinite loop with while
4:26 infinite for loop
5:26 infinite loop with do while
5:55 Let us C solution in Hindi Chapter 6 b.f
6:11 Use of continue statement in C
6:32 Let us C solution in Hindi Chapter 6 b.g
6:46 Avoid this mistake when using while loop
7:41 Let us C solution in Hindi Chapter 6 b.h
8:23 Avoid this mistake when using for loop and nested loop
9:43 Let us C solution in Hindi Chapter 6 b.i
9:53 Important points about for loop
The following queries are answered in this video:
Let us c chapter 6 solutions
let us c by yashwant kanetkar chapter 6
Nested Loops in C with Examples
What are nested loops in C?
What is nested loops with example?
When to use nested loops in C?
What is nested loop syntax?
nested loop in c questions
nested loop in c
nested loop in c class 10
nested loop in c in hindi
nested loop in c exercise
print pattern using nested loop in c
define nested loop in c"
while nested loop in c
multiplication table using nested loop in c
nested loop in cpp
nested while loop in c
nested for loop in c examples with output
nested for loop in c programming example patterns
nested do while loop in c
nested for loop in c flowchart
nested for loop in c programming example with explanation
What is Nested Loop in C?
Nested Loops in C: for, while, do-while (With Examples)
What is Nested Loop in C?
Nested for loop in C programming language
Nested While Loop in C Language
C nested for Loop
Nested Loops in C Detailed Explanation
Nested Loops in C Programming in Hindi
Benefit of using Nested loop in C language
Nested While Loop: C Program
How many nested loops are possible in C?
C Program Nested For Loop with Example
Nested Loops in C Programming Examples
Basic program to show use of nested for loops
Using nested loops to traverse a two-dimensional array
Nested for Loops in C Language
A basic program about nested loops
The C code of a nested loop of depth two
To build a strong foundation in basics of computer programming, watch: https://www.youtube.com/playlist?list=PLw9JnLoOkCHq8bsiMfv-JRzS7PCEKV4sY
To learn more about programming, visit us on https://techvideopedia.com/
Previous video: https://techvideopedia.com/video-tutorial/D71AE/Chapter-6-Exercise-A
Next video: https://techvideopedia.com/video-tutorial/57A2C/Chapter-6-Ex-C-(a)
#learnc #cprogramming #clanguage #letusc #tvp #programming #coding
Видео Let Us C Solutions | C Programming | Do's & Don'ts of FOR, WHILE & DO-WHILE loops канала Level Up Programming in 2025 with Techvideopedia
(a) The three parts of the loop expression in the for loop are:
the i______ expression.
the t_______ expression.
the i_______ expression.
(b) The break statement is used to exit from:
1. An if statement
2. A for loop
3. A program
4. The main() function
(c) A do-while loop is used when we want that the statements within the loop must be executed:
1. Only once
2. At least once
3. More than once
4. None of the above
(d) In what sequence the Initialization, execution of body, testing is done in a do-while loop
1. Initialization, execution of body, testing
2. Execution of body, Initialization, testing
3. Initialization, testing, execution of body
4. None of these
(e) Which of the following is not an infinite loop?
1. int i=1;
while (1)
{
i++;
}
2. for (;;);
3. int t=0, f;
while (t)
{
f=1;
}
4. int y,x=0;
do
{
y=x;
} while (x==0)
(f) Which keyword is used to take the control to the beginning of the loop?
Watch Chapter 5 of Let Us C here:
https://www.youtube.com/playlist?list=PLw9JnLoOkCHo1OCdgwNYhyYMfnmGRA-sV
Watch Chapter 4 of Let Us C here:
https://www.youtube.com/playlist?list=PLw9JnLoOkCHpowvX7Cg8uVS4qxIdSYi4c
Watch Chapter 3 of Let Us C here:
https://www.youtube.com/playlist?list=PLw9JnLoOkCHqE77BolhCIVjOU6_y3ahad
What Chapter 2 of Let Us C here:
https://www.youtube.com/playlist?list=PLw9JnLoOkCHrboTrBo6oQabtrZCGxHssK
Watch Chapter 1 of Let Us C to catch up, if you missed it:
https://www.youtube.com/playlist?list=PLw9JnLoOkCHpBYce1qLsqYH9RUu9C-tR6
The summary of this video by Techvideopedia:
0:00 Let us C solution Chapter 6 Exercise B in Hindi
0:12 Let us C solution in Hindi Chapter 6 b.a
0:42 Parts of for loop syntax
1:00 Let us C solution in Hindi Chapter 6 b.b
1:16 Use of continue and break in C
1:54 Let us C solution in Hindi Chapter 6 b.c
2:05 use of do-while loop in C programming
2:29 Let us C solution in Hindi Chapter 6 b.d
2:50 syntax of do-while loop in C explained in hindi
3:49 Let us C solution in Hindi Chapter 6 b.e
4:07 infinite loop with while
4:26 infinite for loop
5:26 infinite loop with do while
5:55 Let us C solution in Hindi Chapter 6 b.f
6:11 Use of continue statement in C
6:32 Let us C solution in Hindi Chapter 6 b.g
6:46 Avoid this mistake when using while loop
7:41 Let us C solution in Hindi Chapter 6 b.h
8:23 Avoid this mistake when using for loop and nested loop
9:43 Let us C solution in Hindi Chapter 6 b.i
9:53 Important points about for loop
The following queries are answered in this video:
Let us c chapter 6 solutions
let us c by yashwant kanetkar chapter 6
Nested Loops in C with Examples
What are nested loops in C?
What is nested loops with example?
When to use nested loops in C?
What is nested loop syntax?
nested loop in c questions
nested loop in c
nested loop in c class 10
nested loop in c in hindi
nested loop in c exercise
print pattern using nested loop in c
define nested loop in c"
while nested loop in c
multiplication table using nested loop in c
nested loop in cpp
nested while loop in c
nested for loop in c examples with output
nested for loop in c programming example patterns
nested do while loop in c
nested for loop in c flowchart
nested for loop in c programming example with explanation
What is Nested Loop in C?
Nested Loops in C: for, while, do-while (With Examples)
What is Nested Loop in C?
Nested for loop in C programming language
Nested While Loop in C Language
C nested for Loop
Nested Loops in C Detailed Explanation
Nested Loops in C Programming in Hindi
Benefit of using Nested loop in C language
Nested While Loop: C Program
How many nested loops are possible in C?
C Program Nested For Loop with Example
Nested Loops in C Programming Examples
Basic program to show use of nested for loops
Using nested loops to traverse a two-dimensional array
Nested for Loops in C Language
A basic program about nested loops
The C code of a nested loop of depth two
To build a strong foundation in basics of computer programming, watch: https://www.youtube.com/playlist?list=PLw9JnLoOkCHq8bsiMfv-JRzS7PCEKV4sY
To learn more about programming, visit us on https://techvideopedia.com/
Previous video: https://techvideopedia.com/video-tutorial/D71AE/Chapter-6-Exercise-A
Next video: https://techvideopedia.com/video-tutorial/57A2C/Chapter-6-Ex-C-(a)
#learnc #cprogramming #clanguage #letusc #tvp #programming #coding
Видео Let Us C Solutions | C Programming | Do's & Don'ts of FOR, WHILE & DO-WHILE loops канала Level Up Programming in 2025 with Techvideopedia
let us c by yashwant kanetkar let us c solution let us c chapter 5 let us c in hindi techvideopedia tech videopedia techvideo pedia tvp types of loop in c let us c solutions chapter 5 let us c loop control let us c while loop while loop in c types of looping statements in c programming for beginners loops for beginners loop control instructions in c while loop syntax while loop syntax in c while loop structure in c let us c let us c ch5 let us c book
Комментарии отсутствуют
Информация о видео
10 мая 2023 г. 19:47:30
00:10:36
Другие видео канала