#14 : break and continue in C | C Programming for Beginners

  Рет қаралды 104,193

Programiz

Programiz

Күн бұрын

Пікірлер: 237
@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
@hamidabdimurodov7783
@hamidabdimurodov7783 6 ай бұрын
#include int main() { while (1) { int number; printf("Enter a number: "); scanf("%d", &number); if (number >= 0) { printf("Positive value"); break; } if (number % 2 == 0) { printf("Negative Even "); continue; } printf("%d ", number); } return 0; } I did in this way, and it is still working. However, in github the solution is written a slightly different. Is this code right?
@munasherwizi738
@munasherwizi738 3 ай бұрын
❤❤❤
@user-nt4nm4fb3u
@user-nt4nm4fb3u Жыл бұрын
Very well explained, this is what we're struggling when we're start coding as a beginner. Here the basics is covered well, and I'm really grateful for it. This eventually will help most of the enthusiastic learners.
@awesomeswordsman8231
@awesomeswordsman8231 Жыл бұрын
you and bro code might be the best coding teachers out there that can explain this 👍
@vexpomegran9044
@vexpomegran9044 2 жыл бұрын
no teacher at university explains these so well🖤🖤🖤
@harshadatapre2133
@harshadatapre2133 3 жыл бұрын
//Can you write a prpgram that takes an input from the user and prints it if the value is a negative odd number? //*If the input value is positive, end the loop with message, 'Positive Value' //*If the input value is negative even, skip the value with message 'Negative Even' #include int main() { int number; while(1) { printf("Enter a number:"); scanf("%d", &number); if(number < 0) { if(number % 2 != 0) { printf("%d ", number); continue; } printf("Negative Even "); continue; } printf("Positive Value"); break; } }
@devarapallivamsi2981
@devarapallivamsi2981 2 жыл бұрын
thank you by the way at the the end return 0;
@kothakotasrinivasarao5082
@kothakotasrinivasarao5082 Жыл бұрын
@@devarapallivamsi2981 why while(1)
@devarapallivamsi2981
@devarapallivamsi2981 Жыл бұрын
@@kothakotasrinivasarao5082 here, We need the loop to run without any condition(for the first time). So, we give while(1) which refers to True
@msreekanth8886
@msreekanth8886 9 ай бұрын
wtf
@marusukech.5049
@marusukech.5049 3 жыл бұрын
Answer for Programming Task today #include int main(){ while(1){ int num; printf("Enter a number:"); scanf("%d",&num); if(num < 0){ if((num % 2) != 0){ printf("%d ",num); } else{ printf("Negatif Even "); continue; } } else{ printf("Positif value"); break; } } return 0; }
@itzmesuhail4948
@itzmesuhail4948 2 жыл бұрын
I think it wasn't correct plz check it
@shamsrahmantabish9299
@shamsrahmantabish9299 2 жыл бұрын
@@itzmesuhail4948 this is the correct one int main() { while(1) { int number; printf("Enter a number:"); scanf("%d", &number); if (number > 0) { break; } if ((number % 3) != 0){ continue; } printf("%d ", number); } return 0; }
@bullstefano4352
@bullstefano4352 2 жыл бұрын
@@shamsrahmantabish9299 Did you use the continue function?
@stealthy_doctor
@stealthy_doctor 8 ай бұрын
this has been a wonderful beginning to C, thank you so much!!! i think the answer is B. continue ? #include int main() { while(1){ int number; printf("Enter a Number: "); scanf("%d",&number); if(number>0){ printf("Positive Value "); break; } if((number%2)!= 0){ printf("%d ",number); continue; } printf("Negative Even "); } return 0; }
@davradev99
@davradev99 8 ай бұрын
thanks
@chitturoyal7750
@chitturoyal7750 2 жыл бұрын
09:29 Programming Task #include int main() { int i,j=0; while(j
@Data2watch
@Data2watch Жыл бұрын
/*Improved version of your code, Execute it to check*/ #include int main() { label: int i; char choice; printf(" Enter a value: "); scanf("%d",&i); if(i0) { if(i%2==0) printf("Positive even number "); else printf("Positive odd number "); } else { printf("Neither be negitive or positive "); } printf("More numbers?? "); Label: scanf(" %c", &choice); if(choice=='y' || choice=='Y') { goto label; } else if(choice=='n' || choice=='N') { return 1; } else { printf("Answer in Y=Yes or N=No "); goto Label; } return 0; } //Hello
@OgaPita
@OgaPita 2 жыл бұрын
Your explanations are simplified. Thank you!
@programizstudios
@programizstudios 3 жыл бұрын
Q. Which of the following keywords is used to skip the current iteration of a loop ? A. skip B. continue C. break D. loop
@apurbabera9682
@apurbabera9682 3 жыл бұрын
break
@apurbabera9682
@apurbabera9682 3 жыл бұрын
Mam please tell me solution Write a C program to add two number using static number ?
@sujit_ghimire
@sujit_ghimire 3 жыл бұрын
@@apurbabera9682 do some research or else drop the course.
@matthartley2934
@matthartley2934 3 жыл бұрын
Skip ?
@harshadatapre2133
@harshadatapre2133 3 жыл бұрын
B. continue
@rythmflow1514
@rythmflow1514 3 жыл бұрын
This video is most valuble for programming beginners ❤️ can you do video for c programming functions ? 🌸😊
@programizstudios
@programizstudios 3 жыл бұрын
Our next video is on C Function. Do check it out on coming Wednesday. Thankyou for Watching !
@ashutoshurkudkar1080
@ashutoshurkudkar1080 3 жыл бұрын
Videos are awesome as always 💖
@programizstudios
@programizstudios 3 жыл бұрын
Thankyou
@b7sh_b7sh
@b7sh_b7sh Жыл бұрын
amazing teacher🥰
@datuboharry6103
@datuboharry6103 Жыл бұрын
9:34 #include int main(void) { int a; printf(“Enter number: “); scanf(“%d”, &a); If ( a < 0 && a % 2 == 1) { printf(“%d ”, a); } else if (a > 0) { printf(“Positive Value. ”); break; } else if (a < 0 && a % 2 == 0) { printf(“Negative even. ”); continue; } return (0); }
@davidjabulani630
@davidjabulani630 Ай бұрын
wonderful video
@yunghan1754
@yunghan1754 3 ай бұрын
10:13 to skip current iteration only, not the whole loop, answer should be B.continue
@lalith_kumar_akhila2411
@lalith_kumar_akhila2411 3 жыл бұрын
Thank you for posting valuable content of C programming..
@oissimouni7726
@oissimouni7726 Жыл бұрын
//A Program that takes input and prints if the value is a Negative odd number #include int main(){ while (1){ int number; printf("Enter a number: "); scanf("%d",&number); if (number>0) { printf("Positive Value"); break ; } if (number
@matthartley2934
@matthartley2934 3 жыл бұрын
This was super helpful! Thank you.
@vishalkadkal
@vishalkadkal Жыл бұрын
// Online C compiler to run C program online #include int main() { while(1){ int number; printf("Enter the number ="); scanf("%d",&number); if(number>0){ printf(" positive value"); break; } if((number% -2) ==0){ printf("negavtive even "); continue; } printf("%d ",number); } return 0; }
@pranavsilla
@pranavsilla 6 ай бұрын
These videos are very helpful. ThankYou!
@ScottBisong
@ScottBisong 2 ай бұрын
this particular queestion came for my exams
@crystalsxd
@crystalsxd Жыл бұрын
#include int main() { while (1) { int number; printf("Enter a number: "); scanf("%d", &number); if (number > 0) { printf("Positive Value"); break; } if ((number % 2) ==0) { printf("Negative Even "); continue; } printf("%d ", number); } return 0; } PROGRAMIZ QUIZ ANSWER: B. continue
@Ech-chatouiMohammed
@Ech-chatouiMohammed 4 ай бұрын
great way of explanation , thanks a lot
@tnk.1608
@tnk.1608 2 жыл бұрын
My answer: #include int main () { while (1){ sleep(2); int num; printf("Enter value of number: "); scanf("%d", &num); if ( num >=0 ) { printf("Positive value "); break; } if ( ( num % 2) == 0 ) { printf("Negative even "); continue; } printf("Negative odd number: %d ", num); } return 0; }
@nihatdonmzov4166
@nihatdonmzov4166 2 жыл бұрын
Great video. Thank you
@zetsubou-chan
@zetsubou-chan 2 жыл бұрын
thank you! this helped a lot
@onic9623
@onic9623 Жыл бұрын
Option B : Continue ----------------------------------------------------------------------------------------- #include int main () { int num; while (1) { printf(" Enter A Number : "); scanf("%d", &num); if (num < 0) { if (num % 2 == 0) { printf("Negative Even Number"); continue; } else { printf("%d", num); } } else { printf("Positive Number"); break; } } return 0; }
@vikkyd6707
@vikkyd6707 3 жыл бұрын
Ma'am at 5:53 in one place i=1 and other place i==3 For equal to two sign are used what's the reason ?
@lalith_kumar_akhila2411
@lalith_kumar_akhila2411 3 жыл бұрын
i=1 here ''='' is assignment operator..means in the box of i we are keeping value ''1''...i==1 means equating i with 1...hope this helps🙂
@adityajain9439
@adityajain9439 Жыл бұрын
Thank you 👍 answer is c
@whynot.17
@whynot.17 7 ай бұрын
answer is b
@behailus-tube5024
@behailus-tube5024 10 ай бұрын
programming task #include int main() { int number; printf("enter the number: "); scanf("%d", &number); if(number %2 = 1) { printf(" the value is postive"); } return 0; }
@FaroOqi_2003
@FaroOqi_2003 Жыл бұрын
programming Task #include int main() { while(1){ int number; printf(" Enter a number:"); scanf("%d",&number); if(number>0){ printf("Positive Value"); continue; } if(number
@vintrixtergunot8064
@vintrixtergunot8064 7 ай бұрын
programming task #include int main() { while (1){ int number; printf ("Enter a number: "); scanf ("%d", &number); if (number>0){ printf ("Positive Value "); break; } if ((number % 2)== 0){ printf ("Negative Even "); continue; } printf ("%d ", number); } return 0;
@shrur3527
@shrur3527 Жыл бұрын
Tq so much🙏🙏❤️❤️
@emmanuelarthur3081
@emmanuelarthur3081 2 жыл бұрын
Great video 🔥🔥🔥
@devarapallivamsi2981
@devarapallivamsi2981 2 жыл бұрын
thank you programiz team
@nihatdonmzov4166
@nihatdonmzov4166 2 жыл бұрын
Thank you so much
@mv8672
@mv8672 2 жыл бұрын
//programming task #include int main() { while(1) { int num; printf("input your num:"); scanf("%d", &num); if(num>0) { printf("positive value"); break; } if((num %2) == 0) { printf("negative even "); continue; } printf("your num is %d ", num); } return 0; }
@shaheddardas3958
@shaheddardas3958 6 ай бұрын
#include int main() { while(1){ int number; printf("Enter number here:"); scanf("%d",&number); if(number>0){ printf("Positive Value "); break; } if(number%2==0){ printf("Negative Even "); continue; } printf("%d ",number); } return 0; } Quiz answer is B. continue
@yuvrajbalotiya1064
@yuvrajbalotiya1064 Жыл бұрын
Task program of break and continue statement #include //Preprocesssor int main(){ // entry point while (1){ // for While conditions int number; // Declaration of variable printf ("Enter the number : "); // to print the number scanf ("%d", &number); if ( number >= 0){ // for If conditions printf ("Positive value "); break ; } if (( number % 2) >=0 ){ printf ("Negative Even "); continue ; } printf ("%d ", number); // To print the statements } return 0; }
@SambanaCharmila
@SambanaCharmila 6 ай бұрын
Continue is usedd to skip the current iteration
@sahalyoosuf
@sahalyoosuf Жыл бұрын
Thanks a lot guys for your sessions .... thanks @padma
@gamingnon-stop8167
@gamingnon-stop8167 2 жыл бұрын
QUIZ answer: continue PROGRAMMING TASK : #include #include /* Author - Aryan Phatarpekar Date - Sun 23 Oct 2022 */ main() { // declaring the variables int number; while(1) { // asking user to enter the number printf("Enter a number "); scanf("%d", &number); // checking the condition, if the number is greater than 0 priting the message it is a positive number & breaking the loop. if(number > 0) { printf("%d is a positive number, Please enter a a negative value ", number); break; } /* if the number is less than 0(negative number) than making calculations on that number. dividing that number by 2 with modulus operator(%) and checking the remainder. remainder 0 means it is a -ve even number and continuing the code but remainder is 1 then it is a -ve odd and printing the message it is -ve odd number and breaking the loop. */ else { if(number < 0 && number % 2 == 0) { printf("%d is a negative even ", number); continue; } else { printf("YES ! %d is negative Odd number ", number); break; } } } }
@ak74u66
@ak74u66 2 жыл бұрын
very very good 🤩
@tshedzanembilwi4572
@tshedzanembilwi4572 5 ай бұрын
She is sooooooo good
@TechyMom-ft
@TechyMom-ft 3 жыл бұрын
Good one
@rancho121
@rancho121 2 жыл бұрын
Thanks ma'am
@devarapallivamsi2981
@devarapallivamsi2981 2 жыл бұрын
thank you
@Sickpisspakh23971
@Sickpisspakh23971 Жыл бұрын
Thank you!!!
@karunanithir1510
@karunanithir1510 2 жыл бұрын
Hi, I like to print numbers 1 to 25 in five rows and 5 columns continuously and wish ‘22’ and ‘23’ to be skipped, using the ‘continue’ in a for loop as follows: #include #include int main() { int i,j,n=5; int x=1; for (i=1;i
@Himerosteam
@Himerosteam 2 жыл бұрын
Hey, I'm not sure if continue works in this case because you have to print something for the numbers 22 and 23 and if you skip them in the code you also skip the "x++" part. Here is what worked for me, hopefully you can modify it for your needs: //#define _CRT_SECURE_NO_WARNINGS //#include // //int main() //{ // int i, j, n = 5; // int x = 1; // for (i = 1; i
@ishaangupta2353
@ishaangupta2353 11 ай бұрын
#include int main() { int i,j; int x=1; for (i=1;i
@lyricsmanprottoy
@lyricsmanprottoy 2 жыл бұрын
answer of quiz: Continue
@mohammadabdullahaalforhad1375
@mohammadabdullahaalforhad1375 Жыл бұрын
Thanks
@viralfoodies1886
@viralfoodies1886 2 жыл бұрын
answer:optiom B (mam)
@cheftelma8241
@cheftelma8241 2 жыл бұрын
Hi Padma, unfortunately my code for printing positive numbers keeps saying number is undeclared yet it’s the same as yours
@timothykuria6769
@timothykuria6769 2 жыл бұрын
1 #include 2 3 int main(void) 4 { 5 while(1){ 6 int number; 7 printf("Enter a number: "); 8 scanf("%d", &number); 9 10 if(number < 0 && (number % 2) != 0){ 11 printf("%d ", number); 12 break; 13 } 14 if(number < 0 && (number % 2) == 0){ 15 printf("Negative even "); 16 continue; 17 } 18 printf("Positive value "); 19 } 20 21 return (0); 22 } I used that and works is it okay?
@zen_zaf
@zen_zaf 3 ай бұрын
while (1) { int number ; printf (" Enter a number : ") ; scanf ("%d", &number) ; if ( number > 0) { printf(" Postive value ") ; break ; } if ( number % 2 == 0) { printf(" Negative even : "); continue ; } if ( number % 2 != 0) { printf(" Negative odd : "); continue; } else printf("invalid number : %d ", number); } return 0 ; }
@barkhadibraahim1023
@barkhadibraahim1023 2 жыл бұрын
#include int main () { while (1) { int number; printf(" enter the number: "); scanf("%d",&number); if(number > 0) { printf(" positive value"); break; } if((number%-2) ==0) { printf(" negative even"); continue; } printf("%d ",number); } return 0; }
@crafttechindia
@crafttechindia Жыл бұрын
PROGRAMMING TASK SOLUTION int main() { while (1) { int number; printf("Enter a number: "); scanf("%d", &number); if (number > 0) { printf("Number is positive"); break; } if (number < 0 && number % -2 == 0) { printf("Negative even "); continue; } printf("%d ", number); } }
@ritutomar6268
@ritutomar6268 2 жыл бұрын
Option B (continue)
@puritykamane8695
@puritykamane8695 8 ай бұрын
// Online C compiler to run C program online #include int sum = 0; int main() { while (1) { int number; printf("Enter a number: "); scanf("%d", &number); if (number < 0 && number % 2 != 0) { printf("%d ", number); } if (number < 0 && number % 2 == 0){ printf("Negative even "); continue; } if (number >= 0) { printf("positive value"); break; } } return 0; }
@yogithabale
@yogithabale 7 ай бұрын
opt B - continue
@rancho121
@rancho121 2 жыл бұрын
Continue
@balashebjadhav977
@balashebjadhav977 Жыл бұрын
Answer is B) continue
@b7sh_b7sh
@b7sh_b7sh Жыл бұрын
#include int main() { // Write C code here while(1){ int number; printf("Enter the number: "); scanf("%d", &number); if (number>0){ printf("possitive value"); break; } if (number
@KageraTanzania
@KageraTanzania Ай бұрын
Answer is B. continue
@mrwalker8561
@mrwalker8561 11 ай бұрын
int main() { int x; while(1){ printf(" Enter a number : "); scanf("%d", &x); if (x>0){ printf("Positive Value"); break; } if (x%2 == 0){ printf("Negative even"); continue; } printf("Number %d",x); } return 0; }
@nuetrkn
@nuetrkn 2 жыл бұрын
🔥🔥🔥🔥🔥
@Selcuk._._
@Selcuk._._ 9 ай бұрын
/*Can you write a program that takes an input from the user and prints it if the value is a negative odd number ? • If the input value is positive, end the loop with message, Positive Value. • If the input value is negative even, skip the value with message Negative Even.*/ while (1) { int num; printf("enter number: "); scanf_s("%d", &num); if (num > 0) { printf("Positive Value "); break; } else if (num == 0) { printf("Zero is not even or odd, loop continue "); continue; } else if (num % 2 == 0) { printf("Negative Even "); continue; }else printf("\t\t\t%d ",num); }
@jokiiex4563
@jokiiex4563 Жыл бұрын
In 9:00 , do not write a float number 😅
@franchezke2351
@franchezke2351 Жыл бұрын
1 #include 2 int main(void) 3 { 4 while (1) 5 { 6 int number; 7 printf("Enter the number: "); 8 scanf("%d", &number); 9 if (number > 0) 10 { 11 printf("Positive Value "); 12 break; 13 } 14 if (number < 0 && number % 2 == 0) 15 { 16 printf("Negative Even "); 17 continue; 18 } 19 else 20 { 21 printf("%d ", number); 22 } 23 24 } 25 return (0); 26 }
@Themyth24665
@Themyth24665 Жыл бұрын
Perfect bro
@VarshiniSDevadiga-h5q
@VarshiniSDevadiga-h5q 2 ай бұрын
option B continue
@vinaykumarvinaykumar2006
@vinaykumarvinaykumar2006 2 жыл бұрын
My Answer is B # continue
@sawewfelipe7480
@sawewfelipe7480 7 ай бұрын
the answer is C, continue.
@yadlaaravind811
@yadlaaravind811 2 жыл бұрын
Answer:b
@VictoriaOtunsha
@VictoriaOtunsha 2 жыл бұрын
#include int main() { while(1){ int num; printf("Enter a number: "); scanf("%d", &num); if (num > 0){ printf("Positive Value "); break; } if (num %2== 0){ printf("Negative Even "); continue; } printf("%d ", num); } return 0; }
@bryanbalantes6486
@bryanbalantes6486 Жыл бұрын
//Can you write a prpgram that takes an input from the user and prints it if the value is a negative odd number? //*If the input value is positive, end the loop with message, 'Positive Value' //*If the input value is negative even, skip the value with message 'Negative Even' #include int main(){ while (1) { int number; printf("Enter a number: "); scanf("%d", &number); if(number < 0 && number%2 !=0){ printf("%d ", number); } else if(number < 0 && number%2 ==0){ printf("Negative Even "); }else{ printf("Positive Value "); break; } } return 0; } //Programiz quiz answer B. continue
@STRANGER-vv2qf
@STRANGER-vv2qf 2 жыл бұрын
#include int main() { while(1){ int number; printf(" enter a value:"); scanf("%d",&number); if(number0){ printf("positive value"); break; } if(number
@furkanakdag7644
@furkanakdag7644 Жыл бұрын
answer is "B"
@hopeloft
@hopeloft Жыл бұрын
#include int main() { int number; while (1) { printf("Enter number value: "); scanf("%d", &number); if (number == 0) { break; } if (number > 0) { if (number % 2 == 0) { printf("Positive even number "); } else { printf("Positive odd number "); } } else { if (number % 2 == 0) { printf("Negative even number "); } else { printf("Negative odd number "); } } } return 0; }
@ahambraba2504
@ahambraba2504 Жыл бұрын
#include int main(){ int i; while(1){ int i; printf(" Please type a value: "); scanf("%d", &i); if(i >= 0){ printf(" Positive Even "); break; } if(i < 0 && i % 2 != 0){ continue; } printf(" Negative Even "); } return 0; } I find this solution better because there would be no need for continue if you use else or else if
@racingfan372
@racingfan372 3 жыл бұрын
B is correct
@bullshit485
@bullshit485 3 ай бұрын
The Answer is B, Continue.
@mohammadabdullahaalforhad1375
@mohammadabdullahaalforhad1375 Жыл бұрын
B. Continue
@seabasschukwu6988
@seabasschukwu6988 Жыл бұрын
❤❤❤
@k.osquared1315
@k.osquared1315 11 ай бұрын
answer is continue
@_.narr._.03
@_.narr._.03 2 жыл бұрын
Programming task :- #include int main() { while (1) { int n; printf("Enter any number: "); scanf("%d", &n); if (n >= 0) { printf("Positive value! "); break; } if (n % 2 == 0) { printf("Negative even! "); continue; } } return 0; }
@aboutouruniverse3834
@aboutouruniverse3834 Жыл бұрын
Quiz: B
@NaijaBaronYT
@NaijaBaronYT Жыл бұрын
🙏🏽
@TheMGIvideos
@TheMGIvideos 10 ай бұрын
int main() { int number; while (1){ printf("Enter a number: "); scanf("%d", &number); if (number > 0) { printf("Positive Value "); break; } else if ((number % 2) == 0){ printf("Negative Even "); continue; } else { printf("%d ", number); } } }
@bhavanaanu9076
@bhavanaanu9076 3 жыл бұрын
Option b mam
@benpalma8322
@benpalma8322 2 жыл бұрын
#include using namespace std; int main() { while (1) { int value; cout > value; if (value < 0 && value % 2 != 0) { cout
@VenkataNarisetty-s7m
@VenkataNarisetty-s7m 6 ай бұрын
Break
@sunnahboy6223
@sunnahboy6223 2 жыл бұрын
while(1){ int number; printf("Enter a number: "); scanf("%d",&number); if(number
@BharatThakor-bu8pq
@BharatThakor-bu8pq 7 ай бұрын
The answer is Continue..
@HoangDo-yv1yw
@HoangDo-yv1yw Жыл бұрын
like 👍👍
@albertamenyah3019
@albertamenyah3019 Жыл бұрын
answer is B.
@luckev3594
@luckev3594 3 жыл бұрын
🤗🤗
@alanizaguirre4670
@alanizaguirre4670 2 жыл бұрын
The value of "CHEERIO" 🤣🤣🤣🤣🤣!!
@davidjabulani630
@davidjabulani630 Ай бұрын
int x; while(1){ printf(" Please enter number:"); scanf("%d",&x); if(x>0){ printf("Positive Value"); break; } if((x%3)!=0){ printf("Negative Even"); continue; } printf("%d",x); }
@manaswini3256
@manaswini3256 Жыл бұрын
My frnd tanusri made me shift from Jenny to Padma...Padma>>>>jenny
@ALONEBOY-es4uc
@ALONEBOY-es4uc 10 ай бұрын
Same bro nenu kuda
#15  C Functions | C Programming for Beginners
16:57
Programiz
Рет қаралды 255 М.
#12: while Loop in C Programming |  C Programming for Beginners
12:23
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН
Beat Ronaldo, Win $1,000,000
22:45
MrBeast
Рет қаралды 158 МЛН
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 62 МЛН
黑天使只对C罗有感觉#short #angel #clown
00:39
Super Beauty team
Рет қаралды 36 МЛН
#13: for Loop in C Programming | C Programming for Beginners
10:28
AI Is Making You An Illiterate Programmer
27:22
ThePrimeTime
Рет қаралды 250 М.
you will never ask about pointers again after watching this video
8:03
#9: If Else Statements in C | C Programming for Beginners
12:28
Programiz
Рет қаралды 222 М.
#11: Switch Statement in C | C Programming for Beginners
11:10
Programiz
Рет қаралды 179 М.
#8: Boolean and Comparison Operators in C Programming
14:42
Programiz
Рет қаралды 144 М.
#19 C Arrays | C Programming For Beginners
13:04
Programiz
Рет қаралды 313 М.
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН