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

  Рет қаралды 150,825

Programiz

Programiz

Күн бұрын

Пікірлер: 246
@programizstudios
@programizstudios 2 жыл бұрын
Finding C programming hard? We’ve got you! 🚀Get 60% off on Programiz PRO Lifetime Plan this Black Friday-pay once for skills that last forever. Don’t miss out, it’s a limited-time offer! 👉Grab your discount now: bit.ly/blkfriday-24-yt
@vi__vi
@vi__vi Жыл бұрын
#include//code to find sum of odd numbers int main(){ int a=1,sum=0; for(a;a
@TeluguTechnicians
@TeluguTechnicians Жыл бұрын
//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 11 ай бұрын
I got it without using sum+i
@sandeep8262
@sandeep8262 11 ай бұрын
#include int main() { int sum =0; for(int s = 1; s
@SOUMENSHEE_
@SOUMENSHEE_ 2 жыл бұрын
The updated statement is Option C (i++)
@crystalsxd
@crystalsxd Жыл бұрын
#include int main() { int sum = 0; for (int i = 1; i
@light-warrior
@light-warrior 9 ай бұрын
Programming Task: #include int main() { int sum = 0; for(int x = 1; x
@siddharth840
@siddharth840 Жыл бұрын
#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 10 ай бұрын
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
@ebenezerbaidoo5406
@ebenezerbaidoo5406 2 жыл бұрын
It is very helpful in creating a simple multiplication table program
@xiaoqunsun9176
@xiaoqunsun9176 9 ай бұрын
//Sum of Odd Numbers #include int main() { int sum = 0; for (int i = 1; i
@shootingstartsukasa
@shootingstartsukasa 3 ай бұрын
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; }
@chitturoyal7750
@chitturoyal7750 2 жыл бұрын
09:39 - Programming Task legit answer!! #include int main() { int sum=0; int i; for (i=1;i
@user-nt4nm4fb3u
@user-nt4nm4fb3u 10 ай бұрын
Great work as always, Thank you!
@SOUMENSHEE_
@SOUMENSHEE_ 2 жыл бұрын
//Sum of odd number from 1-100. # include int main() { int i,sum =0; for (i=1;i
@metaMorph21
@metaMorph21 Жыл бұрын
@Vik why wouldn't you want to print the output?? You use printf for that
@mohamadafifjaziminbinrosli2258
@mohamadafifjaziminbinrosli2258 Жыл бұрын
@Vik we can use cout
@enowetengenenghazelarreyeb7009
@enowetengenenghazelarreyeb7009 Жыл бұрын
@@mohamadafifjaziminbinrosli2258 I think that'll be C++ you're getting onto
@Victor-e8t7s
@Victor-e8t7s 9 ай бұрын
That's not correct
@yunghan1754
@yunghan1754 Ай бұрын
10:13 answer is C (i++) , (int i = 1) is initial variables, (i < 5) is the condition.
@xhadzam
@xhadzam 4 ай бұрын
Thank you very much for the clear lessons madam tomorrow I have a C programming exam wish me a luck😅
@Zahid_shaik_
@Zahid_shaik_ 2 жыл бұрын
Very good Explanation Mam 👍
@jdram82
@jdram82 Жыл бұрын
very good Explanation, Thanks for your session.
@behailus-tube5024
@behailus-tube5024 7 ай бұрын
programming task #include int main(){ int sum = o; for(int i = 1; i
@karanamdalinaidu
@karanamdalinaidu 5 ай бұрын
H
@syedkazimalirizvi
@syedkazimalirizvi Жыл бұрын
The update statement option C ( i++)
@SALAHMOHAMMED-w7k
@SALAHMOHAMMED-w7k Жыл бұрын
I love you, and I love your classes 😭😭😭
@firedragonmangaming2410
@firedragonmangaming2410 2 жыл бұрын
The updated statement is C (i++)
@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++
@ashutoshurkudkar1080
@ashutoshurkudkar1080 2 жыл бұрын
These is awesome ❤️Mam why don't you make these videos daily
@programizstudios
@programizstudios 2 жыл бұрын
Thank you! We appreciate your thoughts we will bring many videos as possible.
@ashutoshurkudkar1080
@ashutoshurkudkar1080 2 жыл бұрын
Thank you very much mam ❣️
@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
@jmarkyt5453
@jmarkyt5453 Жыл бұрын
#include #include int main(){ int num = 0; for(int i = 1; i < 100; i = i+2){ num = num + i; } printf("%d", num); return 0; }
@Project.i
@Project.i 7 ай бұрын
//using for loop to sum first odd numbers from 0 to 100 #include int main(){ int sum = 0; for(int i = 1; i
@jordanholmes1366
@jordanholmes1366 5 ай бұрын
// answer is c #include int main(){ int sum = 0; for (int i=1; i
@avdeshsingh001
@avdeshsingh001 Жыл бұрын
Thanks ma'am
@sreyounprom
@sreyounprom Жыл бұрын
update statement is i++ and #include int main () { int sum = 0; for(int i = 1; i
@ΚωνσταντίνοςΛαζαρίδης-ξ9ι
@ΚωνσταντίνοςΛαζαρίδης-ξ9ι Жыл бұрын
thanks a lot
@pablosordman8205
@pablosordman8205 Жыл бұрын
I love you for doing this! you've made my life easy!
@onic9623
@onic9623 Жыл бұрын
Option C : i++ ---------------------------------------------------------------------------- #include int main() { int i; int sum = 0; for (i = 1; i
@danieldaniekl6222
@danieldaniekl6222 Ай бұрын
wrong
@barkhadibraahim1023
@barkhadibraahim1023 2 жыл бұрын
#include int main () { int sum = 0; for(int i= 1; i
@nihatdonmzov4166
@nihatdonmzov4166 2 жыл бұрын
Thank you so much
@shrur3527
@shrur3527 Жыл бұрын
Tqso much 🙏🙏❤️❤️
@flamegamerz884
@flamegamerz884 8 ай бұрын
#include int main() { int sum = 0; for(int i = 1; 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; }
@sirishasaragadam7603
@sirishasaragadam7603 2 жыл бұрын
thank u mam
@md.mashrafirahman7206
@md.mashrafirahman7206 Жыл бұрын
Please put subtittles on your videos.. It really helps alot ☺
@corghenceadavid6608
@corghenceadavid6608 11 ай бұрын
subtitles would be useless this video is great without them too
@TanzimArif-h9e
@TanzimArif-h9e 5 ай бұрын
This is soo underrated
@aboutouruniverse3834
@aboutouruniverse3834 Жыл бұрын
#include int main() { int sum = 0; for (int i = 1; i
@stargirl.2005
@stargirl.2005 4 ай бұрын
//PROGRAMMIZ FOR LOOP SUM OF ODD NUMBERS FROM 1 TO 100 #include int main() { int sum = 0; for(int i= 1; i
@kumuthusandeepa8045
@kumuthusandeepa8045 Жыл бұрын
thankyou madam
@MrChilli360
@MrChilli360 Жыл бұрын
It's very helpful thank you so much mam🖤💯💯🥰
@SK_Vlogger_02
@SK_Vlogger_02 3 ай бұрын
option c because increment and decrement are update statements
@mohammadabdullahaalforhad1375
@mohammadabdullahaalforhad1375 Жыл бұрын
#include int main () { int sum = 0; for (int 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
@MatselisoLebajoa
@MatselisoLebajoa 13 күн бұрын
Int main ( ) { int x,sum=0; for ( x=1; x
@athravakasar1606
@athravakasar1606 4 ай бұрын
#include int main() { int sum=0; for(int i=1;i
@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 ..."
@riyashrestha3483
@riyashrestha3483 2 жыл бұрын
Ohhhhhh so that's how you do it
@countrysideshowyaigrock4689
@countrysideshowyaigrock4689 Жыл бұрын
Oh, too awesome, now I`m understand what is in parentheses of "for" loop
@j22laasyalahari71
@j22laasyalahari71 2 жыл бұрын
#include int main() { //sum of odd numbers between 1 to 100 digits int sum=0; for(int s=1;s
@b7sh_b7sh
@b7sh_b7sh Жыл бұрын
amazing teacher😍
@wozakxng
@wozakxng 3 ай бұрын
#include #include int main(){ int sum = 0; for(int i = 1; i
@samsothsanjay9696
@samsothsanjay9696 2 жыл бұрын
#include int main() { int i; int sum=0; for(i=1;i
@devlinxji
@devlinxji 2 жыл бұрын
I understand the question like this : the answe- #include int main() { int num= 1; int sum = num; for(num=1; num
@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
@gayathri0301
@gayathri0301 5 ай бұрын
#include int main() { int sum=0; for(int i=1;i
@programizstudios
@programizstudios 2 жыл бұрын
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 2 жыл бұрын
c.i++
@harshadatapre2133
@harshadatapre2133 2 жыл бұрын
C. i++
@bhavanaanu9076
@bhavanaanu9076 2 жыл бұрын
Option c mam
@logicplusplus1993
@logicplusplus1993 2 жыл бұрын
c i++
@duggisuguna4908
@duggisuguna4908 2 жыл бұрын
Option c is correct
@racingfan372
@racingfan372 2 жыл бұрын
C is the answer
@salmanmugharbel
@salmanmugharbel Жыл бұрын
thanks
@sohailsherkar7770
@sohailsherkar7770 2 жыл бұрын
Quetion can you use float variables in a for loop?
@NimuShah-n3n
@NimuShah-n3n 5 ай бұрын
yes
@kaungkyawwin6476
@kaungkyawwin6476 Жыл бұрын
#include int main() { int sum = 0; for (int 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.
@sanskarchhajed9397
@sanskarchhajed9397 2 жыл бұрын
Make more videos like this
@albertamenyah3019
@albertamenyah3019 Жыл бұрын
The update statement is i++, C.
@ABDIRAHIMO2
@ABDIRAHIMO2 2 жыл бұрын
thank you teacher❤
@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
@devarapallivamsi2981
@devarapallivamsi2981 2 жыл бұрын
thank you
@chiranjivishahi3098
@chiranjivishahi3098 7 ай бұрын
So amazing 😍
@kareemtawfik2886
@kareemtawfik2886 Жыл бұрын
the update statement is c. i++
@myfavytv
@myfavytv Жыл бұрын
Nice video
@anommaharjan3005
@anommaharjan3005 2 жыл бұрын
awesome tutorial. well explained!
@programizstudios
@programizstudios 2 жыл бұрын
Thank you! We are glad you loved our tutorials.
@barkmiya2355
@barkmiya2355 2 жыл бұрын
int sum = 0; for(int i = 1; i
@unknownentity7652
@unknownentity7652 7 ай бұрын
messas = message, gero = zero soo wierd you do it vice verca.
@IfycoolAfrica
@IfycoolAfrica Жыл бұрын
here the messages emergency condition is not printed 20* is 19.
@adamuusman1824
@adamuusman1824 5 ай бұрын
hi how to start from lessons 1
@lekana92maganti47
@lekana92maganti47 Жыл бұрын
Option A i=1
@omsimbarabida05
@omsimbarabida05 Жыл бұрын
is i++ and i+1 the same?
@Yaduvamsisunny
@Yaduvamsisunny 9 ай бұрын
No
@omsimbarabida05
@omsimbarabida05 8 ай бұрын
@@Yaduvamsisunny care to explain?
@dibesshrestha796
@dibesshrestha796 2 жыл бұрын
Nice
@TAMILSELVANK-hv7vu
@TAMILSELVANK-hv7vu 9 ай бұрын
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 4 ай бұрын
in test expression , enter i
@kindguy4330
@kindguy4330 Жыл бұрын
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
@pawankumarnalla1535
@pawankumarnalla1535 2 жыл бұрын
#include int main() { int sum = 0; for(int i = 1; i
@harshaddhokane6675
@harshaddhokane6675 2 жыл бұрын
sum = sum + i;
@toluoyelola1101
@toluoyelola1101 Жыл бұрын
int sum =0; int i; for(i=1; i
@balashebjadhav977
@balashebjadhav977 Жыл бұрын
Answer is C) i++
@unknownentity7652
@unknownentity7652 7 ай бұрын
An idian with a lisp speaking english, you cannot pronounce G and Ze , after 12 Vids I figured it out.
@pianist5664
@pianist5664 2 жыл бұрын
i++ is the answer for the quiz in the video.
@avdeshsingh001
@avdeshsingh001 Жыл бұрын
Answer C
@aboutouruniverse3834
@aboutouruniverse3834 Жыл бұрын
THANKYOU ONCE AGAIN
@sisaperss9201
@sisaperss9201 Жыл бұрын
int main() { int sum = 0; for(int i = 1; i
@ritutomar6268
@ritutomar6268 2 жыл бұрын
Option C
@seabasschukwu6988
@seabasschukwu6988 Жыл бұрын
thank you so much for your content!
@VenkataNarisetty-s7m
@VenkataNarisetty-s7m 3 ай бұрын
Answer is "C"
@firedragonmangaming2410
@firedragonmangaming2410 2 жыл бұрын
#include int main(){ int sum = 0; for (int i = 1; i
@alanizaguirre4670
@alanizaguirre4670 2 жыл бұрын
The value of "CHEERIO" 🤣🤣🤣🤣🤣!!
@EKart03
@EKart03 2 жыл бұрын
Option c
@keshavdixit08
@keshavdixit08 2 жыл бұрын
Answer : C
@PedroLopes-k5f
@PedroLopes-k5f Жыл бұрын
I dont know if it is right but here it comes : #include int main () { int sum = 0; int result; for (int i = 1; i
#14 : break and continue in C | C Programming for Beginners
10:09
#12: while Loop in C Programming |  C Programming for Beginners
12:23
Disrespect or Respect 💔❤️
00:27
Thiago Productions
Рет қаралды 40 МЛН
За кого болели?😂
00:18
МЯТНАЯ ФАНТА
Рет қаралды 2,7 МЛН
Ice Cream or Surprise Trip Around the World?
00:31
Hungry FAM
Рет қаралды 18 МЛН
C_43 Need of Nested Loops in C | Nested For loop in C
18:31
Jenny's Lectures CS IT
Рет қаралды 649 М.
Coding Was HARD Until I Learned These 5 Things...
8:34
Elsa Scola
Рет қаралды 670 М.
Pointers in C / C++ [Full Course]
3:47:23
freeCodeCamp.org
Рет қаралды 4,4 МЛН
#15  C Functions | C Programming for Beginners
16:57
Programiz
Рет қаралды 227 М.
#19 C Arrays | C Programming For Beginners
13:04
Programiz
Рет қаралды 272 М.
Naming Things in Code
7:25
CodeAesthetic
Рет қаралды 2,2 МЛН
How I Would Learn Python FAST in 2024 (if I could start over)
12:19
Thu Vu data analytics
Рет қаралды 538 М.
Understanding the For Loop (examples in C)
18:37
Jacob Sorber
Рет қаралды 18 М.
Disrespect or Respect 💔❤️
00:27
Thiago Productions
Рет қаралды 40 МЛН