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 Жыл бұрын
#include//code to find sum of odd numbers int main(){ int a=1,sum=0; for(a;a
@TeluguTechnicians Жыл бұрын
//C Programming for addition of odd numbers from 1 to 100 #include int main() { int sum=0; for(int i=1;i
@IfycoolAfrica Жыл бұрын
this are sum of even numbers not old numbers
@nkjunior7950 Жыл бұрын
@@IfycoolAfrica No man it's for odd numbers look at the value of i, For even numbers its starts with i=2
@tapiwanyoni Жыл бұрын
Got the same😅
@fieryfy926211 ай бұрын
I got it without using sum+i
@sandeep826211 ай бұрын
#include int main() { int sum =0; for(int s = 1; s
@SOUMENSHEE_2 жыл бұрын
The updated statement is Option C (i++)
@crystalsxd Жыл бұрын
#include int main() { int sum = 0; for (int i = 1; i
@light-warrior9 ай бұрын
Programming Task: #include int main() { int sum = 0; for(int x = 1; x
@siddharth840 Жыл бұрын
#include int main(){ int sum = 0; for(int i=1;i
@nihatdonmzov41662 жыл бұрын
Great video as always . Can't thank you enough!!!
@chaidiariess10 ай бұрын
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
@ebenezerbaidoo54062 жыл бұрын
It is very helpful in creating a simple multiplication table program
@xiaoqunsun91769 ай бұрын
//Sum of Odd Numbers #include int main() { int sum = 0; for (int i = 1; i
@shootingstartsukasa3 ай бұрын
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; }
@chitturoyal77502 жыл бұрын
09:39 - Programming Task legit answer!! #include int main() { int sum=0; int i; for (i=1;i
@user-nt4nm4fb3u10 ай бұрын
Great work as always, Thank you!
@SOUMENSHEE_2 жыл бұрын
//Sum of odd number from 1-100. # include int main() { int i,sum =0; for (i=1;i
@metaMorph21 Жыл бұрын
@Vik why wouldn't you want to print the output?? You use printf for that
@mohamadafifjaziminbinrosli2258 Жыл бұрын
@Vik we can use cout
@enowetengenenghazelarreyeb7009 Жыл бұрын
@@mohamadafifjaziminbinrosli2258 I think that'll be C++ you're getting onto
@Victor-e8t7s9 ай бұрын
That's not correct
@yunghan1754Ай бұрын
10:13 answer is C (i++) , (int i = 1) is initial variables, (i < 5) is the condition.
@xhadzam4 ай бұрын
Thank you very much for the clear lessons madam tomorrow I have a C programming exam wish me a luck😅
@Zahid_shaik_2 жыл бұрын
Very good Explanation Mam 👍
@jdram82 Жыл бұрын
very good Explanation, Thanks for your session.
@behailus-tube50247 ай бұрын
programming task #include int main(){ int sum = o; for(int i = 1; i
@karanamdalinaidu5 ай бұрын
H
@syedkazimalirizvi Жыл бұрын
The update statement option C ( i++)
@SALAHMOHAMMED-w7k Жыл бұрын
I love you, and I love your classes 😭😭😭
@firedragonmangaming24102 жыл бұрын
The updated statement is C (i++)
@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++
@ashutoshurkudkar10802 жыл бұрын
These is awesome ❤️Mam why don't you make these videos daily
@programizstudios2 жыл бұрын
Thank you! We appreciate your thoughts we will bring many videos as possible.
@ashutoshurkudkar10802 жыл бұрын
Thank you very much mam ❣️
@Mallepally.ChaitrraReddy-uo2sd Жыл бұрын
Programiz task: #include int main() { int sum = 0; for(int i = 1; i
@chanyen-be7zf Жыл бұрын
bro, i have a doubt ...why are we writting sum=sum+1?????
@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 Жыл бұрын
#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.i7 ай бұрын
//using for loop to sum first odd numbers from 0 to 100 #include int main(){ int sum = 0; for(int i = 1; i
@jordanholmes13665 ай бұрын
// answer is c #include int main(){ int sum = 0; for (int i=1; i
@avdeshsingh001 Жыл бұрын
Thanks ma'am
@sreyounprom Жыл бұрын
update statement is i++ and #include int main () { int sum = 0; for(int i = 1; i
@ΚωνσταντίνοςΛαζαρίδης-ξ9ι Жыл бұрын
thanks a lot
@pablosordman8205 Жыл бұрын
I love you for doing this! you've made my life easy!
@onic9623 Жыл бұрын
Option C : i++ ---------------------------------------------------------------------------- #include int main() { int i; int sum = 0; for (i = 1; i
@danieldaniekl6222Ай бұрын
wrong
@barkhadibraahim10232 жыл бұрын
#include int main () { int sum = 0; for(int i= 1; i
@nihatdonmzov41662 жыл бұрын
Thank you so much
@shrur3527 Жыл бұрын
Tqso much 🙏🙏❤️❤️
@flamegamerz8848 ай бұрын
#include int main() { int sum = 0; for(int i = 1; i
@ZyAd_nmn2 жыл бұрын
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; }
@sirishasaragadam76032 жыл бұрын
thank u mam
@md.mashrafirahman7206 Жыл бұрын
Please put subtittles on your videos.. It really helps alot ☺
@corghenceadavid660811 ай бұрын
subtitles would be useless this video is great without them too
@TanzimArif-h9e5 ай бұрын
This is soo underrated
@aboutouruniverse3834 Жыл бұрын
#include int main() { int sum = 0; for (int i = 1; i
@stargirl.20054 ай бұрын
//PROGRAMMIZ FOR LOOP SUM OF ODD NUMBERS FROM 1 TO 100 #include int main() { int sum = 0; for(int i= 1; i
@kumuthusandeepa8045 Жыл бұрын
thankyou madam
@MrChilli360 Жыл бұрын
It's very helpful thank you so much mam🖤💯💯🥰
@SK_Vlogger_023 ай бұрын
option c because increment and decrement are update statements
@mohammadabdullahaalforhad1375 Жыл бұрын
#include int main () { int sum = 0; for (int i=1 ; i
@renalynf.jurilla6705 Жыл бұрын
This is what I did for the third example hehe #include int main() { int sum; int i; for(i =1; i
@MatselisoLebajoa13 күн бұрын
Int main ( ) { int x,sum=0; for ( x=1; x
@athravakasar16064 ай бұрын
#include int main() { int sum=0; for(int i=1;i
@oissimouni7726 Жыл бұрын
//Doing the sum of odd numbers using the for loop #include int main (){ int sum=0; for (int i=1; i
@Emersonslouis Жыл бұрын
Hello Your updated statement is wrong hence the rest of your code after will be wrong
@Emersonslouis Жыл бұрын
And it won't give a result in the format needed "sum = sum + 1 ..."
@riyashrestha34832 жыл бұрын
Ohhhhhh so that's how you do it
@countrysideshowyaigrock4689 Жыл бұрын
Oh, too awesome, now I`m understand what is in parentheses of "for" loop
@j22laasyalahari712 жыл бұрын
#include int main() { //sum of odd numbers between 1 to 100 digits int sum=0; for(int s=1;s
@b7sh_b7sh Жыл бұрын
amazing teacher😍
@wozakxng3 ай бұрын
#include #include int main(){ int sum = 0; for(int i = 1; i
@samsothsanjay96962 жыл бұрын
#include int main() { int i; int sum=0; for(i=1;i
@devlinxji2 жыл бұрын
I understand the question like this : the answe- #include int main() { int num= 1; int sum = num; for(num=1; num
@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
@gayathri03015 ай бұрын
#include int main() { int sum=0; for(int i=1;i
@programizstudios2 жыл бұрын
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
@manishjoshi3782 жыл бұрын
c.i++
@harshadatapre21332 жыл бұрын
C. i++
@bhavanaanu90762 жыл бұрын
Option c mam
@logicplusplus19932 жыл бұрын
c i++
@duggisuguna49082 жыл бұрын
Option c is correct
@racingfan3722 жыл бұрын
C is the answer
@salmanmugharbel Жыл бұрын
thanks
@sohailsherkar77702 жыл бұрын
Quetion can you use float variables in a for loop?
@NimuShah-n3n5 ай бұрын
yes
@kaungkyawwin6476 Жыл бұрын
#include int main() { int sum = 0; for (int i = 1; i
@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.
@sanskarchhajed93972 жыл бұрын
Make more videos like this
@albertamenyah3019 Жыл бұрын
The update statement is i++, C.
@ABDIRAHIMO22 жыл бұрын
thank you teacher❤
@bilolnorqobilov5396 Жыл бұрын
can we sum the number from 1 to 100 using while loop?
@prasadbaby2597 Жыл бұрын
#include int main() { int count=1,sum=0,n; printf("Enter a Number "); scanf("%d",&n); while(count
@bilolnorqobilov5396 Жыл бұрын
@@prasadbaby2597 thank you very much
@devarapallivamsi29812 жыл бұрын
thank you
@chiranjivishahi30987 ай бұрын
So amazing 😍
@kareemtawfik2886 Жыл бұрын
the update statement is c. i++
@myfavytv Жыл бұрын
Nice video
@anommaharjan30052 жыл бұрын
awesome tutorial. well explained!
@programizstudios2 жыл бұрын
Thank you! We are glad you loved our tutorials.
@barkmiya23552 жыл бұрын
int sum = 0; for(int i = 1; i
@unknownentity76527 ай бұрын
messas = message, gero = zero soo wierd you do it vice verca.
@IfycoolAfrica Жыл бұрын
here the messages emergency condition is not printed 20* is 19.
@adamuusman18245 ай бұрын
hi how to start from lessons 1
@lekana92maganti47 Жыл бұрын
Option A i=1
@omsimbarabida05 Жыл бұрын
is i++ and i+1 the same?
@Yaduvamsisunny9 ай бұрын
No
@omsimbarabida058 ай бұрын
@@Yaduvamsisunny care to explain?
@dibesshrestha7962 жыл бұрын
Nice
@TAMILSELVANK-hv7vu9 ай бұрын
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.
@yogithabale4 ай бұрын
in test expression , enter i
@kindguy4330 Жыл бұрын
when we take i less than 5 will it count zero also?
@codeeasy8523 Жыл бұрын
That depends if in the initial expresion you wrote i=0 or i=1. Check this kzbin.info/www/bejne/iGrMemaiereVpdE
@kindguy4330 Жыл бұрын
@@codeeasy8523thx bro, but i learned it so many days ago, but thx for replying
@pawankumarnalla15352 жыл бұрын
#include int main() { int sum = 0; for(int i = 1; i
@harshaddhokane66752 жыл бұрын
sum = sum + i;
@toluoyelola1101 Жыл бұрын
int sum =0; int i; for(i=1; i
@balashebjadhav977 Жыл бұрын
Answer is C) i++
@unknownentity76527 ай бұрын
An idian with a lisp speaking english, you cannot pronounce G and Ze , after 12 Vids I figured it out.
@pianist56642 жыл бұрын
i++ is the answer for the quiz in the video.
@avdeshsingh001 Жыл бұрын
Answer C
@aboutouruniverse3834 Жыл бұрын
THANKYOU ONCE AGAIN
@sisaperss9201 Жыл бұрын
int main() { int sum = 0; for(int i = 1; i
@ritutomar62682 жыл бұрын
Option C
@seabasschukwu6988 Жыл бұрын
thank you so much for your content!
@VenkataNarisetty-s7m3 ай бұрын
Answer is "C"
@firedragonmangaming24102 жыл бұрын
#include int main(){ int sum = 0; for (int i = 1; i
@alanizaguirre46702 жыл бұрын
The value of "CHEERIO" 🤣🤣🤣🤣🤣!!
@EKart032 жыл бұрын
Option c
@keshavdixit082 жыл бұрын
Answer : C
@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