🚀 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 Жыл бұрын
#include//code to find sum of odd numbers int main(){ int a=1,sum=0; for(a;a
@TeluguTechnicians2 жыл бұрын
//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😅
@fieryfy9262 Жыл бұрын
I got it without using sum+i
@sandeep8262 Жыл бұрын
#include int main() { int sum =0; for(int s = 1; s
@siddharth840 Жыл бұрын
#include int main(){ int sum = 0; for(int i=1;i
@chitturoyal77502 жыл бұрын
09:39 - Programming Task legit answer!! #include int main() { int sum=0; int i; for (i=1;i
@SOUMENSHEE_2 жыл бұрын
The updated statement is Option C (i++)
@xiaoqunsun917610 ай бұрын
//Sum of Odd Numbers #include int main() { int sum = 0; for (int i = 1; i
@nihatdonmzov41662 жыл бұрын
Great video as always . Can't thank you enough!!!
@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_2 жыл бұрын
//Sum of odd number from 1-100. # include int main() { int i,sum =0; for (i=1;i
@nsfw_metaMorph212 жыл бұрын
@Vik why wouldn't you want to print the output?? You use printf for that
@mohamadafifjaziminbinrosli22582 жыл бұрын
@Vik we can use cout
@enowetengenenghazelarreyeb70092 жыл бұрын
@@mohamadafifjaziminbinrosli2258 I think that'll be C++ you're getting onto
@Victor-e8t7s11 ай бұрын
That's not correct
@yunghan17542 ай бұрын
10:13 answer is C (i++) , (int i = 1) is initial variables, (i < 5) is the condition.
@ebenezerbaidoo54062 жыл бұрын
It is very helpful in creating a simple multiplication table program
@behailus-tube50249 ай бұрын
programming task #include int main(){ int sum = o; for(int i = 1; i
@karanamdalinaidu7 ай бұрын
H
@programizstudios3 жыл бұрын
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
@manishjoshi3783 жыл бұрын
c.i++
@harshadatapre21333 жыл бұрын
C. i++
@bhavanaanu90763 жыл бұрын
Option c mam
@logicplusplus19932 жыл бұрын
c i++
@duggisuguna49082 жыл бұрын
Option c is correct
@crystalsxd Жыл бұрын
#include int main() { int sum = 0; for (int i = 1; i
@SALAHMOHAMMED-w7k Жыл бұрын
I love you, and I love your classes 😭😭😭
@user-nt4nm4fb3u11 ай бұрын
Great work as always, Thank you!
@shootingstartsukasa5 ай бұрын
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 Жыл бұрын
Option C : i++ ---------------------------------------------------------------------------- #include int main() { int i; int sum = 0; for (i = 1; i
@danieldaniekl62223 ай бұрын
wrong
@langolier179213 күн бұрын
a simple way of calculating the gauss sum. i checked and i got same results
@light-warrior11 ай бұрын
Programming Task: #include int main() { int sum = 0; for(int x = 1; x
@jmarkyt54532 жыл бұрын
#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 Жыл бұрын
//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.i9 ай бұрын
//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_2 жыл бұрын
Very good Explanation Mam 👍
@sreyounprom Жыл бұрын
update statement is i++ and #include int main () { int sum = 0; for(int i = 1; i
@jdram822 жыл бұрын
very good Explanation, Thanks for your session.
@syedkazimalirizvi2 жыл бұрын
The update statement option C ( 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; }
@firedragonmangaming24102 жыл бұрын
The updated statement is C (i++)
@pablosordman8205 Жыл бұрын
I love you for doing this! you've made my life easy!
@flamegamerz88410 ай бұрын
#include int main() { int sum = 0; for(int i = 1; i
@xhadzam6 ай бұрын
Thank you very much for the clear lessons madam tomorrow I have a C programming exam wish me a luck😅
@jordanholmes13667 ай бұрын
// answer is c #include int main(){ int sum = 0; for (int i=1; i
@TanzimArif-h9e6 ай бұрын
This is soo underrated
@ashutoshurkudkar10803 жыл бұрын
These is awesome ❤️Mam why don't you make these videos daily
@programizstudios3 жыл бұрын
Thank you! We appreciate your thoughts we will bring many videos as possible.
@ashutoshurkudkar10803 жыл бұрын
Thank you very much mam ❣️
@aboutouruniverse3834 Жыл бұрын
#include int main() { int sum = 0; for (int i = 1; i
@b7sh_b7sh Жыл бұрын
amazing teacher😍
@md.mashrafirahman7206 Жыл бұрын
Please put subtittles on your videos.. It really helps alot ☺
@corghenceadavid6608 Жыл бұрын
subtitles would be useless this video is great without them too
@athravakasar16066 ай бұрын
#include int main() { int sum=0; for(int i=1;i
@albertsingsit4026Ай бұрын
For the app, is there a desktop version or a website? Coding becomes hectic to do in mobile
@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 ..."
@mohammadabdullahaalforhad1375 Жыл бұрын
#include int main () { int sum = 0; for (int i=1 ; i
@shrur3527 Жыл бұрын
Tqso much 🙏🙏❤️❤️
@samsothsanjay96962 жыл бұрын
#include int main() { int i; int sum=0; for(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
@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.20056 ай бұрын
//PROGRAMMIZ FOR LOOP SUM OF ODD NUMBERS FROM 1 TO 100 #include int main() { int sum = 0; for(int i= 1; i
@MrChilli360 Жыл бұрын
It's very helpful thank you so much mam🖤💯💯🥰
@barkhadibraahim10232 жыл бұрын
#include int main () { int sum = 0; for(int i= 1; i
@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
@sohailsherkar77702 жыл бұрын
Quetion can you use float variables in a for loop?
@NimuShah-n3n7 ай бұрын
yes
@kaungkyawwin6476 Жыл бұрын
#include int main() { int sum = 0; for (int i = 1; i
@nihatdonmzov41662 жыл бұрын
Thank you so much
@ABDIRAHIMO22 жыл бұрын
thank you teacher❤
@wozakxng5 ай бұрын
#include #include int main(){ int sum = 0; for(int i = 1; i
@avdeshsingh0012 жыл бұрын
Thanks ma'am
@SK_Vlogger_025 ай бұрын
option c because increment and decrement are update statements
@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
@chiranjivishahi30989 ай бұрын
So amazing 😍
@countrysideshowyaigrock4689 Жыл бұрын
Oh, too awesome, now I`m understand what is in parentheses of "for" loop
@sirishasaragadam76033 жыл бұрын
thank u mam
@anommaharjan30053 жыл бұрын
awesome tutorial. well explained!
@programizstudios3 жыл бұрын
Thank you! We are glad you loved our tutorials.
@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
@ΚωνσταντίνοςΛαζαρίδης-ξ9ι Жыл бұрын
thanks a lot
@barkmiya23552 жыл бұрын
int sum = 0; for(int i = 1; i
@omsimbarabida05 Жыл бұрын
is i++ and i+1 the same?
@Yaduvamsisunny11 ай бұрын
No
@omsimbarabida0510 ай бұрын
@@Yaduvamsisunny care to explain?
@IfycoolAfrica Жыл бұрын
here the messages emergency condition is not printed 20* is 19.
@dylanstoesz13244 ай бұрын
6:22 I got 4950. Anyone have any ideas why?
@MatselisoLebajoa2 ай бұрын
Int main ( ) { int x,sum=0; for ( x=1; x
@gayathri03017 ай бұрын
#include int main() { int sum=0; for(int i=1;i
@TAMILSELVANK-hv7vu11 ай бұрын
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.
@yogithabale6 ай бұрын
in test expression , enter i
@j22laasyalahari712 жыл бұрын
#include int main() { //sum of odd numbers between 1 to 100 digits int sum=0; for(int s=1;s
@BigzPh7 ай бұрын
1:13 i += 1
@devlinxji2 жыл бұрын
I understand the question like this : the answe- #include int main() { int num= 1; int sum = num; for(num=1; num
@unknownentity76529 ай бұрын
messas = message, gero = zero soo wierd you do it vice verca.
@riyashrestha34833 жыл бұрын
Ohhhhhh so that's how you do it
@pawankumarnalla15353 жыл бұрын
#include int main() { int sum = 0; for(int i = 1; i
@harshaddhokane66753 жыл бұрын
sum = sum + i;
@kumuthusandeepa80452 жыл бұрын
thankyou madam
@racingfan3723 жыл бұрын
C is the answer
@kindguy43302 жыл бұрын
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
@albertamenyah3019 Жыл бұрын
The update statement is i++, C.
@myfavytv2 жыл бұрын
Nice video
@lavishsharma97672 жыл бұрын
#include int main() { int sum = 0; for(int i = 1; i
@toluoyelola1101 Жыл бұрын
int sum =0; int i; for(i=1; i
@kareemtawfik2886 Жыл бұрын
the update statement is c. i++
@Data-s3e2 ай бұрын
Why is it blank on my output
@devarapallivamsi29812 жыл бұрын
thank you
@sanskarchhajed93972 жыл бұрын
Make more videos like this
@sisaperss9201 Жыл бұрын
int main() { int sum = 0; for(int i = 1; i
@YakubuNakibat Жыл бұрын
10:15
@seabasschukwu6988 Жыл бұрын
thank you so much for your content!
@7hlucifer94Ай бұрын
ANSWER IS OPTION "C" :- i++
@salmanmugharbel Жыл бұрын
thanks
@my_talks012 жыл бұрын
programming task #include int main(){ int sum=0; int num; for(num=1; num
@firedragonmangaming24102 жыл бұрын
#include int main(){ int sum = 0; for (int i = 1; i