#13: for Loop in C Programming | C Programming for Beginners

  Рет қаралды 160,459

Programiz

Programiz

Күн бұрын

Пікірлер: 251
@programizstudios
@programizstudios 2 жыл бұрын
🚀 Loved the tutorial? Take it further with Programiz PRO! Refine your skills, conquer coding fears, and build confidence with interactive lessons, quizzes, and challenges. Strengthen your programming foundation and master C today! 👉Start Here: bit.ly/c-master
@vi__vi
@vi__vi Жыл бұрын
#include//code to find sum of odd numbers int main(){ int a=1,sum=0; for(a;a
@TeluguTechnicians
@TeluguTechnicians 2 жыл бұрын
//C Programming for addition of odd numbers from 1 to 100 #include int main() { int sum=0; for(int i=1;i
@IfycoolAfrica
@IfycoolAfrica Жыл бұрын
this are sum of even numbers not old numbers
@nkjunior7950
@nkjunior7950 Жыл бұрын
@@IfycoolAfrica No man it's for odd numbers look at the value of i, For even numbers its starts with i=2
@tapiwanyoni
@tapiwanyoni Жыл бұрын
Got the same😅
@fieryfy9262
@fieryfy9262 Жыл бұрын
I got it without using sum+i
@sandeep8262
@sandeep8262 Жыл бұрын
#include int main() { int sum =0; for(int s = 1; s
@siddharth840
@siddharth840 Жыл бұрын
#include int main(){ int sum = 0; for(int i=1;i
@chitturoyal7750
@chitturoyal7750 2 жыл бұрын
09:39 - Programming Task legit answer!! #include int main() { int sum=0; int i; for (i=1;i
@SOUMENSHEE_
@SOUMENSHEE_ 2 жыл бұрын
The updated statement is Option C (i++)
@xiaoqunsun9176
@xiaoqunsun9176 10 ай бұрын
//Sum of Odd Numbers #include int main() { int sum = 0; for (int i = 1; i
@nihatdonmzov4166
@nihatdonmzov4166 2 жыл бұрын
Great video as always . Can't thank you enough!!!
@chaidiariess
@chaidiariess Жыл бұрын
This is my code based on the output example of the given programming task :> #include int main() { int sum=0,i; printf("Sum of Odd Numbers from 1 to 100"); for(i = 1;i
@SOUMENSHEE_
@SOUMENSHEE_ 2 жыл бұрын
//Sum of odd number from 1-100. # include int main() { int i,sum =0; for (i=1;i
@nsfw_metaMorph21
@nsfw_metaMorph21 2 жыл бұрын
@Vik why wouldn't you want to print the output?? You use printf for that
@mohamadafifjaziminbinrosli2258
@mohamadafifjaziminbinrosli2258 2 жыл бұрын
@Vik we can use cout
@enowetengenenghazelarreyeb7009
@enowetengenenghazelarreyeb7009 2 жыл бұрын
@@mohamadafifjaziminbinrosli2258 I think that'll be C++ you're getting onto
@Victor-e8t7s
@Victor-e8t7s 11 ай бұрын
That's not correct
@yunghan1754
@yunghan1754 2 ай бұрын
10:13 answer is C (i++) , (int i = 1) is initial variables, (i < 5) is the condition.
@ebenezerbaidoo5406
@ebenezerbaidoo5406 2 жыл бұрын
It is very helpful in creating a simple multiplication table program
@behailus-tube5024
@behailus-tube5024 9 ай бұрын
programming task #include int main(){ int sum = o; for(int i = 1; i
@karanamdalinaidu
@karanamdalinaidu 7 ай бұрын
H
@programizstudios
@programizstudios 3 жыл бұрын
Q. In the for loop below, which is the update statement? for (int i = 1; i < 5; i++) {...} A. int i = 1 B. i < 5 C. i++ D. for
@manishjoshi378
@manishjoshi378 3 жыл бұрын
c.i++
@harshadatapre2133
@harshadatapre2133 3 жыл бұрын
C. i++
@bhavanaanu9076
@bhavanaanu9076 3 жыл бұрын
Option c mam
@logicplusplus1993
@logicplusplus1993 2 жыл бұрын
c i++
@duggisuguna4908
@duggisuguna4908 2 жыл бұрын
Option c is correct
@crystalsxd
@crystalsxd Жыл бұрын
#include int main() { int sum = 0; for (int i = 1; i
@SALAHMOHAMMED-w7k
@SALAHMOHAMMED-w7k Жыл бұрын
I love you, and I love your classes 😭😭😭
@user-nt4nm4fb3u
@user-nt4nm4fb3u 11 ай бұрын
Great work as always, Thank you!
@shootingstartsukasa
@shootingstartsukasa 5 ай бұрын
For the practice test: #include int main() { int odd; int num = 1; for(odd = 0; odd < 100; odd++) { odd = odd + 1; int sum = num + odd; num = sum + odd; printf("%d = %d + %d ", num,sum,odd); } return 0; }
@onic9623
@onic9623 Жыл бұрын
Option C : i++ ---------------------------------------------------------------------------- #include int main() { int i; int sum = 0; for (i = 1; i
@danieldaniekl6222
@danieldaniekl6222 3 ай бұрын
wrong
@langolier1792
@langolier1792 13 күн бұрын
a simple way of calculating the gauss sum. i checked and i got same results
@light-warrior
@light-warrior 11 ай бұрын
Programming Task: #include int main() { int sum = 0; for(int x = 1; x
@jmarkyt5453
@jmarkyt5453 2 жыл бұрын
#include #include int main(){ int num = 0; for(int i = 1; i < 100; i = i+2){ num = num + i; } printf("%d", num); return 0; }
@bryanbalantes6486
@bryanbalantes6486 Жыл бұрын
//Sum of odd number from 1-100 #include int main(){ int sum = 0; for (int i = 1; i < 100; i+=2) { sum += i; } printf("%d ", sum); return 0; } //Programmer quiz answer C. i++
@Project.i
@Project.i 9 ай бұрын
//using for loop to sum first odd numbers from 0 to 100 #include int main(){ int sum = 0; for(int i = 1; i
@Zahid_shaik_
@Zahid_shaik_ 2 жыл бұрын
Very good Explanation Mam 👍
@sreyounprom
@sreyounprom Жыл бұрын
update statement is i++ and #include int main () { int sum = 0; for(int i = 1; i
@jdram82
@jdram82 2 жыл бұрын
very good Explanation, Thanks for your session.
@syedkazimalirizvi
@syedkazimalirizvi 2 жыл бұрын
The update statement option C ( i++)
@ZyAd_nmn
@ZyAd_nmn 2 жыл бұрын
int main(){ int sum = 0; for(int i = 0 ; i < 100 ; i++){ if(i % 2 != 0){ printf("%d " , i); sum = sum + i; } } printf("The sum = %d " , sum); return 0; }
@firedragonmangaming2410
@firedragonmangaming2410 2 жыл бұрын
The updated statement is C (i++)
@pablosordman8205
@pablosordman8205 Жыл бұрын
I love you for doing this! you've made my life easy!
@flamegamerz884
@flamegamerz884 10 ай бұрын
#include int main() { int sum = 0; for(int i = 1; i
@xhadzam
@xhadzam 6 ай бұрын
Thank you very much for the clear lessons madam tomorrow I have a C programming exam wish me a luck😅
@jordanholmes1366
@jordanholmes1366 7 ай бұрын
// answer is c #include int main(){ int sum = 0; for (int i=1; i
@TanzimArif-h9e
@TanzimArif-h9e 6 ай бұрын
This is soo underrated
@ashutoshurkudkar1080
@ashutoshurkudkar1080 3 жыл бұрын
These is awesome ❤️Mam why don't you make these videos daily
@programizstudios
@programizstudios 3 жыл бұрын
Thank you! We appreciate your thoughts we will bring many videos as possible.
@ashutoshurkudkar1080
@ashutoshurkudkar1080 3 жыл бұрын
Thank you very much mam ❣️
@aboutouruniverse3834
@aboutouruniverse3834 Жыл бұрын
#include int main() { int sum = 0; for (int i = 1; i
@b7sh_b7sh
@b7sh_b7sh Жыл бұрын
amazing teacher😍
@md.mashrafirahman7206
@md.mashrafirahman7206 Жыл бұрын
Please put subtittles on your videos.. It really helps alot ☺
@corghenceadavid6608
@corghenceadavid6608 Жыл бұрын
subtitles would be useless this video is great without them too
@athravakasar1606
@athravakasar1606 6 ай бұрын
#include int main() { int sum=0; for(int i=1;i
@albertsingsit4026
@albertsingsit4026 Ай бұрын
For the app, is there a desktop version or a website? Coding becomes hectic to do in mobile
@oissimouni7726
@oissimouni7726 Жыл бұрын
//Doing the sum of odd numbers using the for loop #include int main (){ int sum=0; for (int i=1; i
@Emersonslouis
@Emersonslouis Жыл бұрын
Hello Your updated statement is wrong hence the rest of your code after will be wrong
@Emersonslouis
@Emersonslouis Жыл бұрын
And it won't give a result in the format needed "sum = sum + 1 ..."
@mohammadabdullahaalforhad1375
@mohammadabdullahaalforhad1375 Жыл бұрын
#include int main () { int sum = 0; for (int i=1 ; i
@shrur3527
@shrur3527 Жыл бұрын
Tqso much 🙏🙏❤️❤️
@samsothsanjay9696
@samsothsanjay9696 2 жыл бұрын
#include int main() { int i; int sum=0; for(i=1;i
@renalynf.jurilla6705
@renalynf.jurilla6705 Жыл бұрын
This is what I did for the third example hehe #include int main() { int sum; int i; for(i =1; i
@bami_codes
@bami_codes Жыл бұрын
@programizstudios My question is why can't you put the printf function inside the for loop curly braces in the last example. You did it like that before in the first example.
@stargirl.2005
@stargirl.2005 6 ай бұрын
//PROGRAMMIZ FOR LOOP SUM OF ODD NUMBERS FROM 1 TO 100 #include int main() { int sum = 0; for(int i= 1; i
@MrChilli360
@MrChilli360 Жыл бұрын
It's very helpful thank you so much mam🖤💯💯🥰
@barkhadibraahim1023
@barkhadibraahim1023 2 жыл бұрын
#include int main () { int sum = 0; for(int i= 1; i
@Mallepally.ChaitrraReddy-uo2sd
@Mallepally.ChaitrraReddy-uo2sd Жыл бұрын
Programiz task: #include int main() { int sum = 0; for(int i = 1; i
@chanyen-be7zf
@chanyen-be7zf Жыл бұрын
bro, i have a doubt ...why are we writting sum=sum+1?????
@CUTE_TV_
@CUTE_TV_ Жыл бұрын
​@@chanyen-be7zflook up to assignment operators , we write it cuz we want to add all of the numbers from particular point given point so that we can find the main solution for particular problem , This function is the most important function to find that answer
@sohailsherkar7770
@sohailsherkar7770 2 жыл бұрын
Quetion can you use float variables in a for loop?
@NimuShah-n3n
@NimuShah-n3n 7 ай бұрын
yes
@kaungkyawwin6476
@kaungkyawwin6476 Жыл бұрын
#include int main() { int sum = 0; for (int i = 1; i
@nihatdonmzov4166
@nihatdonmzov4166 2 жыл бұрын
Thank you so much
@ABDIRAHIMO2
@ABDIRAHIMO2 2 жыл бұрын
thank you teacher❤
@wozakxng
@wozakxng 5 ай бұрын
#include #include int main(){ int sum = 0; for(int i = 1; i
@avdeshsingh001
@avdeshsingh001 2 жыл бұрын
Thanks ma'am
@SK_Vlogger_02
@SK_Vlogger_02 5 ай бұрын
option c because increment and decrement are update statements
@AhmadAlMassry-d2t
@AhmadAlMassry-d2t Жыл бұрын
int sum1 = -1; for(int h = 0; h < 50; h = h + 1) { sum1 = sum1 + 2; printf("Sum = %d ", sum1); } this is code about ur question
@chiranjivishahi3098
@chiranjivishahi3098 9 ай бұрын
So amazing 😍
@countrysideshowyaigrock4689
@countrysideshowyaigrock4689 Жыл бұрын
Oh, too awesome, now I`m understand what is in parentheses of "for" loop
@sirishasaragadam7603
@sirishasaragadam7603 3 жыл бұрын
thank u mam
@anommaharjan3005
@anommaharjan3005 3 жыл бұрын
awesome tutorial. well explained!
@programizstudios
@programizstudios 3 жыл бұрын
Thank you! We are glad you loved our tutorials.
@bilolnorqobilov5396
@bilolnorqobilov5396 Жыл бұрын
can we sum the number from 1 to 100 using while loop?
@prasadbaby2597
@prasadbaby2597 Жыл бұрын
#include int main() { int count=1,sum=0,n; printf("Enter a Number "); scanf("%d",&n); while(count
@bilolnorqobilov5396
@bilolnorqobilov5396 Жыл бұрын
@@prasadbaby2597 thank you very much
@ΚωνσταντίνοςΛαζαρίδης-ξ9ι
@ΚωνσταντίνοςΛαζαρίδης-ξ9ι Жыл бұрын
thanks a lot
@barkmiya2355
@barkmiya2355 2 жыл бұрын
int sum = 0; for(int i = 1; i
@omsimbarabida05
@omsimbarabida05 Жыл бұрын
is i++ and i+1 the same?
@Yaduvamsisunny
@Yaduvamsisunny 11 ай бұрын
No
@omsimbarabida05
@omsimbarabida05 10 ай бұрын
@@Yaduvamsisunny care to explain?
@IfycoolAfrica
@IfycoolAfrica Жыл бұрын
here the messages emergency condition is not printed 20* is 19.
@dylanstoesz1324
@dylanstoesz1324 4 ай бұрын
6:22 I got 4950. Anyone have any ideas why?
@MatselisoLebajoa
@MatselisoLebajoa 2 ай бұрын
Int main ( ) { int x,sum=0; for ( x=1; x
@gayathri0301
@gayathri0301 7 ай бұрын
#include int main() { int sum=0; for(int i=1;i
@TAMILSELVANK-hv7vu
@TAMILSELVANK-hv7vu 11 ай бұрын
Mam!! As per you said the emergency loop is printed for 20 times. since the condition is = [ for(i = 0; i < 20; i + 1){ ] it is printed for 19 times only . kindly resolve it.
@yogithabale
@yogithabale 6 ай бұрын
in test expression , enter i
@j22laasyalahari71
@j22laasyalahari71 2 жыл бұрын
#include int main() { //sum of odd numbers between 1 to 100 digits int sum=0; for(int s=1;s
@BigzPh
@BigzPh 7 ай бұрын
1:13 i += 1
@devlinxji
@devlinxji 2 жыл бұрын
I understand the question like this : the answe- #include int main() { int num= 1; int sum = num; for(num=1; num
@unknownentity7652
@unknownentity7652 9 ай бұрын
messas = message, gero = zero soo wierd you do it vice verca.
@riyashrestha3483
@riyashrestha3483 3 жыл бұрын
Ohhhhhh so that's how you do it
@pawankumarnalla1535
@pawankumarnalla1535 3 жыл бұрын
#include int main() { int sum = 0; for(int i = 1; i
@harshaddhokane6675
@harshaddhokane6675 3 жыл бұрын
sum = sum + i;
@kumuthusandeepa8045
@kumuthusandeepa8045 2 жыл бұрын
thankyou madam
@racingfan372
@racingfan372 3 жыл бұрын
C is the answer
@kindguy4330
@kindguy4330 2 жыл бұрын
when we take i less than 5 will it count zero also?
@codeeasy8523
@codeeasy8523 Жыл бұрын
That depends if in the initial expresion you wrote i=0 or i=1. Check this kzbin.info/www/bejne/iGrMemaiereVpdE
@kindguy4330
@kindguy4330 Жыл бұрын
@@codeeasy8523thx bro, but i learned it so many days ago, but thx for replying
@albertamenyah3019
@albertamenyah3019 Жыл бұрын
The update statement is i++, C.
@myfavytv
@myfavytv 2 жыл бұрын
Nice video
@lavishsharma9767
@lavishsharma9767 2 жыл бұрын
#include int main() { int sum = 0; for(int i = 1; i
@toluoyelola1101
@toluoyelola1101 Жыл бұрын
int sum =0; int i; for(i=1; i
@kareemtawfik2886
@kareemtawfik2886 Жыл бұрын
the update statement is c. i++
@Data-s3e
@Data-s3e 2 ай бұрын
Why is it blank on my output
@devarapallivamsi2981
@devarapallivamsi2981 2 жыл бұрын
thank you
@sanskarchhajed9397
@sanskarchhajed9397 2 жыл бұрын
Make more videos like this
@sisaperss9201
@sisaperss9201 Жыл бұрын
int main() { int sum = 0; for(int i = 1; i
@YakubuNakibat
@YakubuNakibat Жыл бұрын
10:15
@seabasschukwu6988
@seabasschukwu6988 Жыл бұрын
thank you so much for your content!
@7hlucifer94
@7hlucifer94 Ай бұрын
ANSWER IS OPTION "C" :- i++
@salmanmugharbel
@salmanmugharbel Жыл бұрын
thanks
@my_talks01
@my_talks01 2 жыл бұрын
programming task #include int main(){ int sum=0; int num; for(num=1; num
@firedragonmangaming2410
@firedragonmangaming2410 2 жыл бұрын
#include int main(){ int sum = 0; for (int i = 1; i
@pianist5664
@pianist5664 2 жыл бұрын
i++ is the answer for the quiz in the video.
@balashebjadhav977
@balashebjadhav977 Жыл бұрын
Answer is C) i++
@alanizaguirre4670
@alanizaguirre4670 2 жыл бұрын
The value of "CHEERIO" 🤣🤣🤣🤣🤣!!
@dibesshrestha796
@dibesshrestha796 3 жыл бұрын
Nice
@adamuusman1824
@adamuusman1824 7 ай бұрын
hi how to start from lessons 1
@Vincent-g4e3v
@Vincent-g4e3v 7 күн бұрын
#14 : break and continue in C | C Programming for Beginners
10:09
#12: while Loop in C Programming |  C Programming for Beginners
12:23
Beat Ronaldo, Win $1,000,000
22:45
MrBeast
Рет қаралды 158 МЛН
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН
Naming Things in Code
7:25
CodeAesthetic
Рет қаралды 2,3 МЛН
you will never ask about pointers again after watching this video
8:03
#15  C Functions | C Programming for Beginners
16:57
Programiz
Рет қаралды 248 М.
#9: If Else Statements in C | C Programming for Beginners
12:28
Programiz
Рет қаралды 218 М.
31 nooby C++ habits you need to ditch
16:18
mCoding
Рет қаралды 850 М.
The Absolute Best Intro to Monads For Software Engineers
15:12
Studying With Alex
Рет қаралды 678 М.
why do header files even exist?
10:53
Low Level
Рет қаралды 448 М.
Learning C# In A Week... Otherwise I Fail University
9:04
#19 C Arrays | C Programming For Beginners
13:04
Programiz
Рет қаралды 304 М.
Beat Ronaldo, Win $1,000,000
22:45
MrBeast
Рет қаралды 158 МЛН