Difference between revisions of "C-and-C++/C3/Loops/English-timed"

From Script | Spoken-Tutorial
Jump to: navigation, search
Line 1: Line 1:
 
{| border = 1
 
{| border = 1
  
|'''Time'''
+
|Time
 
+
|Narration
|'''Narration'''
+
 
+
  
 
|-
 
|-
| 00.01
+
| 00:01
 
|Welcome to the spoken tutorial on Loops in C and C++  
 
|Welcome to the spoken tutorial on Loops in C and C++  
  
 
|-
 
|-
| 00.06
+
| 00:06
 
|In this tutorial we will learn,   
 
|In this tutorial we will learn,   
  
 
|-
 
|-
| 00.09
+
| 00:09
 
|'''for loop, '''  
 
|'''for loop, '''  
  
 
|-
 
|-
| 00.10
+
| 00:10
 
|'''while loop''' and  
 
|'''while loop''' and  
  
 
|-
 
|-
| 00.12
+
| 00:12
 
|'''do…while loop. '''
 
|'''do…while loop. '''
  
 
|-
 
|-
| 00.13
+
| 00:13
 
| We will do this with the help of some examples.  
 
| We will do this with the help of some examples.  
  
 
|-
 
|-
| 00.17
+
| 00:17
 
|We will also see some common errors and their solutions.  
 
|We will also see some common errors and their solutions.  
  
 
|-
 
|-
| 00.21
+
| 00:21
 
| To record this tutorial, I am using  
 
| To record this tutorial, I am using  
  
 
|-
 
|-
| 00.24
+
| 00:24
 
|'''Ubuntu Operating System''' version 11.04  
 
|'''Ubuntu Operating System''' version 11.04  
  
 
|-
 
|-
|00.28
+
|00:28
 
| '''gcc''' and '''g++ Compiler''' version 4.6.1 on Ubuntu.  
 
| '''gcc''' and '''g++ Compiler''' version 4.6.1 on Ubuntu.  
  
  
 
|-
 
|-
|00.34
+
|00:34
 
|Let us start with the introduction to loops.  
 
|Let us start with the introduction to loops.  
  
 
|-
 
|-
|00.38
+
|00:38
 
|Loops are used to execute a group of instructions repeatedly.  
 
|Loops are used to execute a group of instructions repeatedly.  
  
 
|-
 
|-
| 00.44
+
| 00:44
 
|Depending on the purpose they are divided into three types:  
 
|Depending on the purpose they are divided into three types:  
  
 
|-
 
|-
| 00.48
+
| 00:48
 
|'''while loop '''  
 
|'''while loop '''  
  
  
 
|-
 
|-
| 00.49
+
| 00:49
 
|'''do…..while loop''' and
 
|'''do…..while loop''' and
  
 
|-
 
|-
| 00.51
+
| 00:51
 
|'''for loop '''
 
|'''for loop '''
  
 
|-
 
|-
| 00.52
+
| 00:52
 
|Let us start with the '''while loop''' first
 
|Let us start with the '''while loop''' first
  
 
|-
 
|-
| 00.56
+
| 00:56
 
|A '''while loop''' tests the condition in the beginning  
 
|A '''while loop''' tests the condition in the beginning  
  
 
|-
 
|-
| 01.00
+
| 01:00
 
|The structure is  
 
|The structure is  
  
 
|-
 
|-
| 01.01
+
| 01:01
 
|'''while''' ( condition )  
 
|'''while''' ( condition )  
  
 
|-
 
|-
|01.03
+
|01:03
 
|within the bracket statement block  
 
|within the bracket statement block  
  
 
|-
 
|-
| 01.07
+
| 01:07
 
|Now move on to  '''do….while loop '''
 
|Now move on to  '''do….while loop '''
  
 
|-
 
|-
| 01.09
+
| 01:09
 
|A '''do..while loop''' is executed atleast once before the condition could be validated.  
 
|A '''do..while loop''' is executed atleast once before the condition could be validated.  
  
 
|-
 
|-
| 01.15
+
| 01:15
 
|The structure is
 
|The structure is
  
 
|-
 
|-
| 01.17
+
| 01:17
 
|'''do''' (within the brackets) statement block  
 
|'''do''' (within the brackets) statement block  
  
  
 
|-
 
|-
|01.20
+
|01:20
 
|after the bracket the '''while''' ( condition )
 
|after the bracket the '''while''' ( condition )
  
 
|-
 
|-
|01.23
+
|01:23
 
|You can see that the condition is checked at the end.
 
|You can see that the condition is checked at the end.
  
 
|-
 
|-
| 01.27
+
| 01:27
 
|Now,let us see an example on '''while loop''' and '''do...while loop '''
 
|Now,let us see an example on '''while loop''' and '''do...while loop '''
  
 
|-
 
|-
| 01.32
+
| 01:32
 
|I have already typed the code on the editor.  
 
|I have already typed the code on the editor.  
  
 
|-
 
|-
| 01.35
+
| 01:35
 
|Let me open it.  
 
|Let me open it.  
  
 
|-
 
|-
|01.37
+
|01:37
 
|Note that our file name is '''while.c.'''
 
|Note that our file name is '''while.c.'''
  
 
|-
 
|-
|01.41
+
|01:41
 
|Today we are going to learn addition of first 10 numbers using '''while''' loop.
 
|Today we are going to learn addition of first 10 numbers using '''while''' loop.
  
 
|-
 
|-
|01.47
+
|01:47
 
|Let me explain the code now.
 
|Let me explain the code now.
  
 
|-
 
|-
|01.49
+
|01:49
 
|This is our '''header file.'''
 
|This is our '''header file.'''
  
 
|-
 
|-
| 01.51
+
| 01:51
 
|Inside the '''main''' function we have declared two '''integer variables x''' and '''y '''and initialized to 0.
 
|Inside the '''main''' function we have declared two '''integer variables x''' and '''y '''and initialized to 0.
 
 
  
 
|-
 
|-
| 01.59
+
| 01:59
 
| This is our '''while loop.'''  
 
| This is our '''while loop.'''  
  
|
 
 
|-
 
|-
| 02.02
+
| 02:02
 
| The condition of the '''while''' loop is '''x is less than or equal to 10. '''
 
| The condition of the '''while''' loop is '''x is less than or equal to 10. '''
  
  
 
|-
 
|-
|02.06
+
|02:06
 
|Here the value of '''x''' is added to the value of '''y.'''
 
|Here the value of '''x''' is added to the value of '''y.'''
  
  
 
|-
 
|-
| 02.10
+
| 02:10
 
| The value obtained after the addition is stored in '''y. '''
 
| The value obtained after the addition is stored in '''y. '''
  
 
|-
 
|-
| 02.15
+
| 02:15
 
| Then we print the value of y
 
| Then we print the value of y
  
 
|-
 
|-
| 02.18
+
| 02:18
 
| Here ''' x '''is incremented.  
 
| Here ''' x '''is incremented.  
  
 
|-
 
|-
| 02.20
+
| 02:20
 
| That means the variable '''x''' is increased by one.
 
| That means the variable '''x''' is increased by one.
  
 
|-
 
|-
| 02.25
+
| 02:25
 
|And this is our '''return statement.'''
 
|And this is our '''return statement.'''
  
 
|-
 
|-
| 02.27
+
| 02:27
 
|Now,let us execute the program.  
 
|Now,let us execute the program.  
  
 
|-
 
|-
| 02.30
+
| 02:30
 
| Please open the '''terminal''' window by pressing '''Ctrl, Alt and T''' keys simultaneously on your keyboard.
 
| Please open the '''terminal''' window by pressing '''Ctrl, Alt and T''' keys simultaneously on your keyboard.
  
 
|-
 
|-
| 02.39
+
| 02:39
 
|Type '''gcc space while dot c space hyphen o space while '''
 
|Type '''gcc space while dot c space hyphen o space while '''
  
 
|-
 
|-
| 02.45
+
| 02:45
 
|Press '''Enter'''
 
|Press '''Enter'''
 
  
 
|-
 
|-
| 02.47
+
| 02:47
 
|Type  '''./while ''' (dot slash while) .Press Enter
 
|Type  '''./while ''' (dot slash while) .Press Enter
  
  
 
|-
 
|-
| 02.52
+
| 02:52
 
| The output is displayed.
 
| The output is displayed.
  
 
|-
 
|-
| 02.54
+
| 02:54
 
| Now lets us see the working of ''' while loop.'''
 
| Now lets us see the working of ''' while loop.'''
  
 
|-
 
|-
| 02.57
+
| 02:57
 
|Let me resize the window.
 
|Let me resize the window.
  
 
|-
 
|-
| 03.00
+
| 03:00
 
|Here, first the  value of  '''x ''' and  '''y ''' is 0
 
|Here, first the  value of  '''x ''' and  '''y ''' is 0
 
  
 
|-
 
|-
| 03.04
+
| 03:04
 
|This is our  '''while ''' condition.
 
|This is our  '''while ''' condition.
  
 
|-
 
|-
| 03.06
+
| 03:06
 
|Here we check whether x is less than or equal to 10 which means the values of x will be from 0 to 10
 
|Here we check whether x is less than or equal to 10 which means the values of x will be from 0 to 10
 
  
 
|-
 
|-
| 03.15
+
| 03:15
 
|Then we  add y plus x (i.e)  0 plus 0 we get 0.
 
|Then we  add y plus x (i.e)  0 plus 0 we get 0.
  
 
|-
 
|-
| 03.22
+
| 03:22
 
| We print the value of y, here we get 0.  
 
| We print the value of y, here we get 0.  
  
 
|-
 
|-
| 03.27
+
| 03:27
 
| Then x is incremented which means now the value of x will be 1
 
| Then x is incremented which means now the value of x will be 1
 +
 
|-
 
|-
| 03.33
+
| 03:33
 
|Then we  will check the condition again, 1 is less than or equal to 10, if the condition is  '''true ''' then we will add the values,
 
|Then we  will check the condition again, 1 is less than or equal to 10, if the condition is  '''true ''' then we will add the values,
  
 
|-
 
|-
| 03.44
+
| 03:44
 
| y (i.e ) 0 plus x that is 1. 0 plus 1 is 1
 
| y (i.e ) 0 plus x that is 1. 0 plus 1 is 1
  
 
|-
 
|-
| 03.50
+
| 03:50
 
|We print the value as 1.
 
|We print the value as 1.
  
 
|-
 
|-
| 03.53
+
| 03:53
 
|Again x is incremented.
 
|Again x is incremented.
  
 
|-
 
|-
| 03.55
+
| 03:55
 
|Now the value of x is 2.
 
|Now the value of x is 2.
  
 
|-
 
|-
| 03.59
+
| 03:59
 
|We check the condition again.  
 
|We check the condition again.  
  
 
|-
 
|-
| 04.01
+
| 04:01
 
|2 is less than or equal to 10, if the condition is  '''true ''' then we will add the values, (i.e ) 1 plus 2 which will give 3.
 
|2 is less than or equal to 10, if the condition is  '''true ''' then we will add the values, (i.e ) 1 plus 2 which will give 3.
  
 
|-
 
|-
| 04.11
+
| 04:11
 
|We print the value as 3.  
 
|We print the value as 3.  
  
 
|-
 
|-
| 04.13
+
| 04:13
 
|Like this it will go on upto x is less than or equal to 10
 
|Like this it will go on upto x is less than or equal to 10
  
 
|-
 
|-
| 04.20
+
| 04:20
 
| Now, we will see the same program using  '''do….while loop  '''
 
| Now, we will see the same program using  '''do….while loop  '''
  
 
|-
 
|-
| 04.24
+
| 04:24
 
| Here is our program
 
| Here is our program
  
 
|-
 
|-
| 04.26
+
| 04:26
 
|Note that our file name is  '''do hyphen while dot c '''
 
|Note that our file name is  '''do hyphen while dot c '''
  
 
|-
 
|-
| 04.31
+
| 04:31
 
|This part is already explained in the previous program.  
 
|This part is already explained in the previous program.  
  
 
|-
 
|-
| 04.35
+
| 04:35
 
|So lets us move on to a  '''do...while loop '''
 
|So lets us move on to a  '''do...while loop '''
  
 
|-
 
|-
| 04.38
+
| 04:38
 
|Here first the body of the loop will be executed  and then the condition is checked.
 
|Here first the body of the loop will be executed  and then the condition is checked.
  
 
|-
 
|-
| 04.44
+
| 04:44
 
|The value of x is added to the value of y and the value obtained after the addition is stored in y
 
|The value of x is added to the value of y and the value obtained after the addition is stored in y
  
 
|-
 
|-
| 04.52
+
| 04:52
 
|The logic is same as in  '''while ''' program
 
|The logic is same as in  '''while ''' program
  
 
|-
 
|-
| 04.55
+
| 04:55
 
|Now lets us execute the program
 
|Now lets us execute the program
  
 
|-
 
|-
| 04.58
+
| 04:58
 
|Come back to our terminal
 
|Come back to our terminal
  
 
|-
 
|-
| 05.00
+
| 05:00
 
|Type  '''gcc space do hyphen while dot c space hyphen o space do '''. Press  '''Enter '''
 
|Type  '''gcc space do hyphen while dot c space hyphen o space do '''. Press  '''Enter '''
  
 
|-
 
|-
| 05.08
+
| 05:08
 
|Type  '''dot slash do '''. Press  '''Enter '''
 
|Type  '''dot slash do '''. Press  '''Enter '''
  
 
|-
 
|-
| 05.12
+
| 05:12
 
|We can see that the output is similar  to our  '''while ''' program
 
|We can see that the output is similar  to our  '''while ''' program
  
 
|-
 
|-
| 05.16
+
| 05:16
 
|Now, lets us see the working of  '''do...while loop '''
 
|Now, lets us see the working of  '''do...while loop '''
  
 
|-
 
|-
| 05.20
+
| 05:20
 
|Let me resize the window
 
|Let me resize the window
  
 
|-
 
|-
| 05.22
+
| 05:22
 
|Here the value x and y is 0
 
|Here the value x and y is 0
  
 
|-
 
|-
| 05.25
+
| 05:25
 
|We add those values then we will get 0
 
|We add those values then we will get 0
  
 
|-
 
|-
| 05.29
+
| 05:29
 
|Now the value of y is 0.  
 
|Now the value of y is 0.  
  
 
|-
 
|-
| 05.31
+
| 05:31
 
|We print the value as 0
 
|We print the value as 0
  
 
|-
 
|-
| 05.33
+
| 05:33
 
|Then x is incremented by 1 which means now the value of x is 1, then the condition will be checked.
 
|Then x is incremented by 1 which means now the value of x is 1, then the condition will be checked.
  
 
|-
 
|-
| 05.42
+
| 05:42
 
| You can see that the body of loop is executed first.
 
| You can see that the body of loop is executed first.
  
 
|-
 
|-
| 05.45
+
| 05:45
 
|  Anyhow if the condition is  '''false ''' then also we will get a value that is 0.  
 
|  Anyhow if the condition is  '''false ''' then also we will get a value that is 0.  
  
 
|-
 
|-
| 05.52
+
| 05:52
 
|Now, here we will check whether 1 is less than or equal to 10
 
|Now, here we will check whether 1 is less than or equal to 10
  
  
 
|-
 
|-
| 05.56
+
| 05:56
 
|The condition is true again we will add the values.  
 
|The condition is true again we will add the values.  
  
 
|-
 
|-
| 06.00
+
| 06:00
 
| Now 0 plus 1.  
 
| Now 0 plus 1.  
  
 
|-
 
|-
| 06.02
+
| 06:02
 
| Then we will print the value of y as 1
 
| Then we will print the value of y as 1
  
  
 
|-
 
|-
| 06.05
+
| 06:05
 
|Again x will be incremented.   
 
|Again x will be incremented.   
  
 
|-
 
|-
| 06.08
+
| 06:08
 
|Now the value of x is 2.
 
|Now the value of x is 2.
  
 
|-
 
|-
| 06.11
+
| 06:11
 
|Then we check 2 is  less than or equal to 10
 
|Then we check 2 is  less than or equal to 10
  
 
|-
 
|-
| 06.15
+
| 06:15
 
|We will go back here
 
|We will go back here
  
 
|-
 
|-
| 06.17
+
| 06:17
 
|Then we will add the values 1 plus 2 is 3
 
|Then we will add the values 1 plus 2 is 3
  
 
|-
 
|-
| 06.20
+
| 06:20
 
| We print the value of y as 3
 
| We print the value of y as 3
  
 
|-
 
|-
| 06.23
+
| 06:23
 
|Like this the conditions will be checked till the value of x will be less than or equal to 10
 
|Like this the conditions will be checked till the value of x will be less than or equal to 10
  
 
|-
 
|-
| 06.30
+
| 06:30
 
|And this is our return statement.
 
|And this is our return statement.
  
 
|-
 
|-
| 06.33
+
| 06:33
 
|Note that here the while condition ends with the semicolon
 
|Note that here the while condition ends with the semicolon
  
 
|-
 
|-
| 06.38
+
| 06:38
 
|In while loop the condition does not end with the semicolon.
 
|In while loop the condition does not end with the semicolon.
  
 
|-
 
|-
| 06.43
+
| 06:43
 
|Now lets us see how to execute these programs in C++
 
|Now lets us see how to execute these programs in C++
  
 
|-
 
|-
| 06.48
+
| 06:48
 
|This is our while program in C++
 
|This is our while program in C++
  
 
|-
 
|-
| 06.52
+
| 06:52
 
|The logic and implementation are same as in our C program
 
|The logic and implementation are same as in our C program
  
 
|-
 
|-
| 06.56
+
| 06:56
 
|There are a few changes like the header file as iostream in place of stdio.h
 
|There are a few changes like the header file as iostream in place of stdio.h
  
  
 
|-
 
|-
| 07.04
+
| 07:04
 
|We have included the using statement here using namespace std and here we have use the cout function in place of  '''printf ''' function
 
|We have included the using statement here using namespace std and here we have use the cout function in place of  '''printf ''' function
  
 
|-
 
|-
| 07.16
+
| 07:16
 
|The structure of  '''while loop ''' is same as in our C program.
 
|The structure of  '''while loop ''' is same as in our C program.
  
 
|-
 
|-
| 07.21
+
| 07:21
 
|Lets us execute the program
 
|Lets us execute the program
  
 
|-
 
|-
| 07.23
+
| 07:23
 
|Come back to a terminal
 
|Come back to a terminal
  
 
|-
 
|-
| 07.25
+
| 07:25
 
|Let me clear the prompt
 
|Let me clear the prompt
  
  
 
|-
 
|-
| 07.28
+
| 07:28
 
|To execute type  ''' g++ space while dot cpp space hyphen o space while1 '''. Press  '''Enter '''
 
|To execute type  ''' g++ space while dot cpp space hyphen o space while1 '''. Press  '''Enter '''
  
 
|-
 
|-
| 07.38
+
| 07:38
 
|Type  '''dot slash while1 '''.Press  '''Enter '''
 
|Type  '''dot slash while1 '''.Press  '''Enter '''
  
 
|-
 
|-
| 07.43
+
| 07:43
 
|You can see that the output is similar to our while program in C.
 
|You can see that the output is similar to our while program in C.
  
 
|-
 
|-
| 07.48
+
| 07:48
 
|Now let us see the  '''do... while ''' program in C++
 
|Now let us see the  '''do... while ''' program in C++
  
 
|-
 
|-
| 07.52
+
| 07:52
 
|Come back to the Text editor
 
|Come back to the Text editor
  
 
|-
 
|-
| 07.54
+
| 07:54
 
|Here also there are similar changes like the  '''header file ''',the  '''using statement ''' and the  '''cout  '''function
 
|Here also there are similar changes like the  '''header file ''',the  '''using statement ''' and the  '''cout  '''function
  
 
|-
 
|-
| 08.03
+
| 08:03
 
|Rest of the things are similar
 
|Rest of the things are similar
  
 
|-
 
|-
| 08.06
+
| 08:06
 
|Lets us execute the program.
 
|Lets us execute the program.
  
 
|-
 
|-
| 08.08
+
| 08:08
 
|Come back to our terminal
 
|Come back to our terminal
  
 
|-
 
|-
| 08.10
+
| 08:10
 
|Type  '''g++ space do hyphen while dot cpp space hyphen o space do1 '''. Press  '''Enter '''
 
|Type  '''g++ space do hyphen while dot cpp space hyphen o space do1 '''. Press  '''Enter '''
  
 
|-
 
|-
| 08.19
+
| 08:19
 
|Type  '''dot slash do1 '''.Press  '''Enter '''
 
|Type  '''dot slash do1 '''.Press  '''Enter '''
  
 
|-
 
|-
| 08.23
+
| 08:23
 
|We can see that the output is similar to our  '''do...while program in C. '''
 
|We can see that the output is similar to our  '''do...while program in C. '''
  
 
|-
 
|-
| 08.28
+
| 08:28
 
|Now we will see some common errors and their solutions
 
|Now we will see some common errors and their solutions
  
 
|-
 
|-
| 08.32
+
| 08:32
 
|Come back to our text editor
 
|Come back to our text editor
  
 
|-
 
|-
| 08.35
+
| 08:35
 
|Suppose here I will not increment the value of x.  
 
|Suppose here I will not increment the value of x.  
  
 
|-
 
|-
| 08.41
+
| 08:41
 
|Click on Save.  
 
|Click on Save.  
  
 
|-
 
|-
| 08.42
+
| 08:42
 
|Let us see what happens
 
|Let us see what happens
  
 
|-
 
|-
| 08.44
+
| 08:44
 
|Come back to the terminal.  
 
|Come back to the terminal.  
  
 
|-
 
|-
| 08.45
+
| 08:45
 
|Let me clear the prompt
 
|Let me clear the prompt
  
 
|-
 
|-
| 08.47
+
| 08:47
 
|Lets us execute the program.  
 
|Lets us execute the program.  
  
 
|-
 
|-
| 08.50
+
| 08:50
 
|Press the uparrow key twice.
 
|Press the uparrow key twice.
 
|-
 
|-
| 08.54
+
| 08:54
 
| Again press the uparrow key
 
| Again press the uparrow key
  
  
 
|-
 
|-
| 08.57
+
| 08:57
 
|The output is displayed.  
 
|The output is displayed.  
 
|-
 
|-
| 08.59
+
| 08:59
 
|We can see number of zeros, this is because the loop does not have the terminating condition .  
 
|We can see number of zeros, this is because the loop does not have the terminating condition .  
  
 
|-
 
|-
| 09.07
+
| 09:07
 
|It is known as  '''infinite loop. '''
 
|It is known as  '''infinite loop. '''
  
  
 
|-
 
|-
| 09.10
+
| 09:10
 
| '''Infinite loop ''' can cause the system to become unresponsive.
 
| '''Infinite loop ''' can cause the system to become unresponsive.
  
 
|-
 
|-
| 09.14
+
| 09:14
 
| It causes the program to consume all the  '''processors  time ''' but it can be terminated
 
| It causes the program to consume all the  '''processors  time ''' but it can be terminated
  
 
|-
 
|-
| 09.21
+
| 09:21
 
|Come back to our program, let us fix the error.  
 
|Come back to our program, let us fix the error.  
  
 
|-
 
|-
| 09.25
+
| 09:25
 
|Type  '''x++ ''' and a semicolon.
 
|Type  '''x++ ''' and a semicolon.
  
 
|-
 
|-
| 09.28
+
| 09:28
 
|Click on Save. Let us execute again.  
 
|Click on Save. Let us execute again.  
  
 
|-
 
|-
| 09.31
+
| 09:31
 
|Come back to terminal.
 
|Come back to terminal.
  
 
|-
 
|-
| 09.33
+
| 09:33
 
|Press the uparrow key
 
|Press the uparrow key
  
 
|-
 
|-
| 09.38
+
| 09:38
 
|Yes, it is working
 
|Yes, it is working
  
 
|-
 
|-
| 09.40
+
| 09:40
 
|This bring us to the end of this tutorial.  
 
|This bring us to the end of this tutorial.  
  
 
|-
 
|-
| 09.43
+
| 09:43
 
|We will move back to our slides.
 
|We will move back to our slides.
  
 
|-
 
|-
| 09.45
+
| 09:45
 
|Let us summarize
 
|Let us summarize
  
  
 
|-
 
|-
| 09.47
+
| 09:47
 
|In this tutorial we learned,  
 
|In this tutorial we learned,  
  
 
|-
 
|-
| 09.50
+
| 09:50
 
| '''while loop  '''
 
| '''while loop  '''
  
 
|-
 
|-
| 09.51
+
| 09:51
 
|example. while(x is less than or equal to 10)  
 
|example. while(x is less than or equal to 10)  
  
 
|-
 
|-
| 09.54
+
| 09:54
 
| '''do….while loop  '''
 
| '''do….while loop  '''
  
 
|-
 
|-
| 09.56
+
| 09:56
 
|example. do statement block and
 
|example. do statement block and
  
  
 
|-
 
|-
| 09.59
+
| 09:59
 
|while condition at the end
 
|while condition at the end
  
 
|-
 
|-
| 10.01
+
| 10:01
 
|As an assignment  
 
|As an assignment  
  
 
|-
 
|-
| 10.03
+
| 10:03
 
|Write a program to print the following using for loops  
 
|Write a program to print the following using for loops  
  
 
|-
 
|-
| 10.07
+
| 10:07
 
|0 to 9  
 
|0 to 9  
  
 
|-
 
|-
| 10.10
+
| 10:10
 
|The syntax of the  '''for loop ''' is  
 
|The syntax of the  '''for loop ''' is  
  
 
|-
 
|-
| 10.12
+
| 10:12
 
| '''for (variable initialization; variable condition;and variable increment or decrement)  '''
 
| '''for (variable initialization; variable condition;and variable increment or decrement)  '''
  
 
|-
 
|-
| 10.20
+
| 10:20
 
|And here will be the body of the loop
 
|And here will be the body of the loop
  
 
|-
 
|-
| 10.24
+
| 10:24
 
|Watch the video available at the link shown below
 
|Watch the video available at the link shown below
  
 
|-
 
|-
| 10.27
+
| 10:27
 
|It summarizes the Spoken Tutorial project  
 
|It summarizes the Spoken Tutorial project  
  
 
|-
 
|-
| 10.30
+
| 10:30
 
|If you do not have good bandwidth, you can download and watch it  
 
|If you do not have good bandwidth, you can download and watch it  
  
 
|-
 
|-
| 10.33
+
| 10:33
 
|The Spoken Tutorial Project Team  
 
|The Spoken Tutorial Project Team  
  
 
|-
 
|-
| 10.35
+
| 10:35
 
|Conducts workshops using spoken tutorials  
 
|Conducts workshops using spoken tutorials  
  
 
|-
 
|-
| 10.38
+
| 10:38
 
|Gives certificates to those who pass an online test  
 
|Gives certificates to those who pass an online test  
  
 
|-
 
|-
| 10.42
+
| 10:42
 
|For more details, please write to, contact@spoken-tutorial.org  
 
|For more details, please write to, contact@spoken-tutorial.org  
  
 
|-
 
|-
| 10.47
+
| 10:47
 
|Spoken Tutorial Project is a part of Talk to a Teacher project  
 
|Spoken Tutorial Project is a part of Talk to a Teacher project  
  
 
|-
 
|-
| 10.51
+
| 10:51
 
|It is supported by the National Mission on Education through ICT, MHRD, Government of India
 
|It is supported by the National Mission on Education through ICT, MHRD, Government of India
  
 
|-
 
|-
| 10.58
+
| 10:58
 
|More information on this Mission is available at the link shown below
 
|More information on this Mission is available at the link shown below
  
 
|-
 
|-
| 11.02
+
| 11:02
 
|This script as been contributed by Dhawal Goyal. This is Ashwini Patil from IIT Bombay signing off  
 
|This script as been contributed by Dhawal Goyal. This is Ashwini Patil from IIT Bombay signing off  
  
 
|-
 
|-
| 11.08
+
| 11:08
 
|Thank You for joining.
 
|Thank You for joining.

Revision as of 13:06, 23 June 2014

Time Narration
00:01 Welcome to the spoken tutorial on Loops in C and C++
00:06 In this tutorial we will learn,
00:09 for loop,
00:10 while loop and
00:12 do…while loop.
00:13 We will do this with the help of some examples.
00:17 We will also see some common errors and their solutions.
00:21 To record this tutorial, I am using
00:24 Ubuntu Operating System version 11.04
00:28 gcc and g++ Compiler version 4.6.1 on Ubuntu.


00:34 Let us start with the introduction to loops.
00:38 Loops are used to execute a group of instructions repeatedly.
00:44 Depending on the purpose they are divided into three types:
00:48 while loop


00:49 do…..while loop and
00:51 for loop
00:52 Let us start with the while loop first
00:56 A while loop tests the condition in the beginning
01:00 The structure is
01:01 while ( condition )
01:03 within the bracket statement block
01:07 Now move on to do….while loop
01:09 A do..while loop is executed atleast once before the condition could be validated.
01:15 The structure is
01:17 do (within the brackets) statement block


01:20 after the bracket the while ( condition )
01:23 You can see that the condition is checked at the end.
01:27 Now,let us see an example on while loop and do...while loop
01:32 I have already typed the code on the editor.
01:35 Let me open it.
01:37 Note that our file name is while.c.
01:41 Today we are going to learn addition of first 10 numbers using while loop.
01:47 Let me explain the code now.
01:49 This is our header file.
01:51 Inside the main function we have declared two integer variables x and y and initialized to 0.
01:59 This is our while loop.
02:02 The condition of the while loop is x is less than or equal to 10.


02:06 Here the value of x is added to the value of y.


02:10 The value obtained after the addition is stored in y.
02:15 Then we print the value of y
02:18 Here x is incremented.
02:20 That means the variable x is increased by one.
02:25 And this is our return statement.
02:27 Now,let us execute the program.
02:30 Please open the terminal window by pressing Ctrl, Alt and T keys simultaneously on your keyboard.
02:39 Type gcc space while dot c space hyphen o space while
02:45 Press Enter
02:47 Type ./while (dot slash while) .Press Enter


02:52 The output is displayed.
02:54 Now lets us see the working of while loop.
02:57 Let me resize the window.
03:00 Here, first the value of x and y is 0
03:04 This is our while condition.
03:06 Here we check whether x is less than or equal to 10 which means the values of x will be from 0 to 10
03:15 Then we add y plus x (i.e) 0 plus 0 we get 0.
03:22 We print the value of y, here we get 0.
03:27 Then x is incremented which means now the value of x will be 1
03:33 Then we will check the condition again, 1 is less than or equal to 10, if the condition is true then we will add the values,
03:44 y (i.e ) 0 plus x that is 1. 0 plus 1 is 1
03:50 We print the value as 1.
03:53 Again x is incremented.
03:55 Now the value of x is 2.
03:59 We check the condition again.
04:01 2 is less than or equal to 10, if the condition is true then we will add the values, (i.e ) 1 plus 2 which will give 3.
04:11 We print the value as 3.
04:13 Like this it will go on upto x is less than or equal to 10
04:20 Now, we will see the same program using do….while loop
04:24 Here is our program
04:26 Note that our file name is do hyphen while dot c
04:31 This part is already explained in the previous program.
04:35 So lets us move on to a do...while loop
04:38 Here first the body of the loop will be executed and then the condition is checked.
04:44 The value of x is added to the value of y and the value obtained after the addition is stored in y
04:52 The logic is same as in while program
04:55 Now lets us execute the program
04:58 Come back to our terminal
05:00 Type gcc space do hyphen while dot c space hyphen o space do . Press Enter
05:08 Type dot slash do . Press Enter
05:12 We can see that the output is similar to our while program
05:16 Now, lets us see the working of do...while loop
05:20 Let me resize the window
05:22 Here the value x and y is 0
05:25 We add those values then we will get 0
05:29 Now the value of y is 0.
05:31 We print the value as 0
05:33 Then x is incremented by 1 which means now the value of x is 1, then the condition will be checked.
05:42 You can see that the body of loop is executed first.
05:45 Anyhow if the condition is false then also we will get a value that is 0.
05:52 Now, here we will check whether 1 is less than or equal to 10


05:56 The condition is true again we will add the values.
06:00 Now 0 plus 1.
06:02 Then we will print the value of y as 1


06:05 Again x will be incremented.
06:08 Now the value of x is 2.
06:11 Then we check 2 is less than or equal to 10
06:15 We will go back here
06:17 Then we will add the values 1 plus 2 is 3
06:20 We print the value of y as 3
06:23 Like this the conditions will be checked till the value of x will be less than or equal to 10
06:30 And this is our return statement.
06:33 Note that here the while condition ends with the semicolon
06:38 In while loop the condition does not end with the semicolon.
06:43 Now lets us see how to execute these programs in C++
06:48 This is our while program in C++
06:52 The logic and implementation are same as in our C program
06:56 There are a few changes like the header file as iostream in place of stdio.h


07:04 We have included the using statement here using namespace std and here we have use the cout function in place of printf function
07:16 The structure of while loop is same as in our C program.
07:21 Lets us execute the program
07:23 Come back to a terminal
07:25 Let me clear the prompt


07:28 To execute type g++ space while dot cpp space hyphen o space while1 . Press Enter
07:38 Type dot slash while1 .Press Enter
07:43 You can see that the output is similar to our while program in C.
07:48 Now let us see the do... while program in C++
07:52 Come back to the Text editor
07:54 Here also there are similar changes like the header file ,the using statement and the cout function
08:03 Rest of the things are similar
08:06 Lets us execute the program.
08:08 Come back to our terminal
08:10 Type g++ space do hyphen while dot cpp space hyphen o space do1 . Press Enter
08:19 Type dot slash do1 .Press Enter
08:23 We can see that the output is similar to our do...while program in C.
08:28 Now we will see some common errors and their solutions
08:32 Come back to our text editor
08:35 Suppose here I will not increment the value of x.
08:41 Click on Save.
08:42 Let us see what happens
08:44 Come back to the terminal.
08:45 Let me clear the prompt
08:47 Lets us execute the program.
08:50 Press the uparrow key twice.
08:54 Again press the uparrow key


08:57 The output is displayed.
08:59 We can see number of zeros, this is because the loop does not have the terminating condition .
09:07 It is known as infinite loop.


09:10 Infinite loop can cause the system to become unresponsive.
09:14 It causes the program to consume all the processors time but it can be terminated
09:21 Come back to our program, let us fix the error.
09:25 Type x++ and a semicolon.
09:28 Click on Save. Let us execute again.
09:31 Come back to terminal.
09:33 Press the uparrow key
09:38 Yes, it is working
09:40 This bring us to the end of this tutorial.
09:43 We will move back to our slides.
09:45 Let us summarize


09:47 In this tutorial we learned,
09:50 while loop
09:51 example. while(x is less than or equal to 10)
09:54 do….while loop
09:56 example. do statement block and


09:59 while condition at the end
10:01 As an assignment
10:03 Write a program to print the following using for loops
10:07 0 to 9
10:10 The syntax of the for loop is
10:12 for (variable initialization; variable condition;and variable increment or decrement)
10:20 And here will be the body of the loop
10:24 Watch the video available at the link shown below
10:27 It summarizes the Spoken Tutorial project
10:30 If you do not have good bandwidth, you can download and watch it
10:33 The Spoken Tutorial Project Team
10:35 Conducts workshops using spoken tutorials
10:38 Gives certificates to those who pass an online test
10:42 For more details, please write to, contact@spoken-tutorial.org
10:47 Spoken Tutorial Project is a part of Talk to a Teacher project
10:51 It is supported by the National Mission on Education through ICT, MHRD, Government of India
10:58 More information on this Mission is available at the link shown below
11:02 This script as been contributed by Dhawal Goyal. This is Ashwini Patil from IIT Bombay signing off
11:08 Thank You for joining.

Contributors and Content Editors

PoojaMoolya, Pratik kamble, Priyacst, Sandhya.np14