#12: while Loop in C Programming | C Programming for Beginners

  Рет қаралды 172,460

Programiz

Programiz

Күн бұрын

Пікірлер: 355
@programizstudios
@programizstudios 2 жыл бұрын
🔥Finding it Damn Hard to Understand C Programming? Learn to code-the right way-with interactive lessons, quizzes & challenges. Build a strong programming base; it's IMPORTANT! Try Programiz PRO for Free: bit.ly/master-c-programming
@AP_MusicMedia
@AP_MusicMedia 4 ай бұрын
who is here in 2024
@AniquaIbnatMir-e3b
@AniquaIbnatMir-e3b Ай бұрын
Me !
@LacruzRose-iq3xq
@LacruzRose-iq3xq 20 күн бұрын
Me too
@gamerxx6344
@gamerxx6344 8 күн бұрын
yeah present
@Girma_Chew
@Girma_Chew 2 жыл бұрын
// Online C compiler to run C program online //The program that can display a multiplication table with decrement value using while loop. #include int main() { int number; printf("Enter the number: "); scanf("%d", &number); int count=10; while (count >= 1) { int product = count * number; printf("%d x %d = %d ", number, count, product); count = count-1; } return 0; }
@sakthimuruganr2547
@sakthimuruganr2547 Жыл бұрын
int main() { int number; printf("Enter the Number: "); scanf("%d", &number); int count = 10; while (count >= 1){ int product = number * count; printf("%d*%d =%d ",number,count,product); count -= 1; } return 0; }
@metaMorph21
@metaMorph21 Жыл бұрын
I can watch these videos all day The way she explains all these ao sweetly and everything is short and 1precise thank you for this beautiful playlist👍
@jagannathnandi556
@jagannathnandi556 Жыл бұрын
Keep your focus on code 😊
@bryanbalantes6486
@bryanbalantes6486 Жыл бұрын
A. while(1){....}
@aderitobentoderi6429
@aderitobentoderi6429 6 ай бұрын
I was reading a programming book without understanding much, but the way she explains it is amazingly simple and easy, thank you very much, you saved my learning, now I'm more interested in programming
@programizstudios
@programizstudios 2 жыл бұрын
Q. Which of the following causes an infinite loop? 1. while (1) {...} 2. int i = 3; while (i < 4) {...} 3. int i = 3 do { ...} while(i < 4) 4. All of the above
@subhajitNath0
@subhajitNath0 2 жыл бұрын
4 . All Of The Above
@Maybemiles_C
@Maybemiles_C 2 жыл бұрын
Ans.1 while(1){..} Because the condition is always true
@priteshmehta
@priteshmehta 2 жыл бұрын
4
@hurulaynmuhamedsalimcedarp5770
@hurulaynmuhamedsalimcedarp5770 2 жыл бұрын
maybe A. the first answer
@harshadatapre2133
@harshadatapre2133 2 жыл бұрын
!. while(1){...}
@PicturePerfectDiaries
@PicturePerfectDiaries Жыл бұрын
For quiz..... To terminate the loop condition should be false and in this code value is always true hence all of these options are i finite loops... So the answer is option D
@BTS-ct1ce
@BTS-ct1ce 2 жыл бұрын
Your tone accent is Indian are you Indian? By the way you teach really well 😊 Thank you so much it helps so much!!
@alinadangol9313
@alinadangol9313 2 жыл бұрын
The presenter is beautiful.
@programizstudios
@programizstudios 2 жыл бұрын
Thankyou !
@buddharatnamanandhar3837
@buddharatnamanandhar3837 2 жыл бұрын
Definitely she is!! :)
@williamsigoniseigha1348
@williamsigoniseigha1348 11 ай бұрын
We know but please focus
@Zzzzzzzzz678
@Zzzzzzzzz678 7 ай бұрын
😂😂😂​@@williamsigoniseigha1348
@HellensAngels
@HellensAngels 5 ай бұрын
If I, a man, called you beautiful at work, wouldn't that be an HR nightmare? 😅 I'm saying... what about the while loop? Isn't that beautiful?
@sandeep8262
@sandeep8262 9 ай бұрын
#include Int main () { Int number = 9; Int count = 10; While (count >0) { Int result = number * count; Printf("%d*%d = %d , number, count, result;) count = count - 1; } return 0; }
@hridhanpatel3987
@hridhanpatel3987 2 жыл бұрын
Extremely useful lectures ❤️🔥😀 By how much time all of advanced C programming course will be completed?
@programizstudios
@programizstudios 2 жыл бұрын
We will continue the series until all the important topics are covered. So stay tuned for new episode and a lot of other resources every week. Thank you for sticking with us.
@hridhanpatel3987
@hridhanpatel3987 2 жыл бұрын
Okay great 👍 Thanks 😊
@adymainz
@adymainz Жыл бұрын
@@programizstudios kindly do c++,pascal,C#,java and xml totorials plz
@bloomcreation4578
@bloomcreation4578 Жыл бұрын
Before studying my lectures notes, I must watch these tutorials because they make my studies easy ......thanks programiz
@hdidev6880
@hdidev6880 Жыл бұрын
the best c tutorial in youtube , thanks a lot Padma 😍🙏👌
@nihatdonmzov4166
@nihatdonmzov4166 Жыл бұрын
Your way of teaching is so beautiful. Thank you so much!
@user-nt4nm4fb3u
@user-nt4nm4fb3u 8 ай бұрын
As always great crystal clear explanation! Thank you very much for everyone who are making this happen.
@EKart03
@EKart03 2 жыл бұрын
Option - A
@adarshyadav1423
@adarshyadav1423 2 жыл бұрын
give us more programming tasks Like daily tasks
@programizstudios
@programizstudios 2 жыл бұрын
We really love enthusiastic learners like you Adarsh. Do complete the programming task of this tutorials and of previous videos and hopefully we will bring other tasks and challenges really soon stay tuned.
@adarshyadav1423
@adarshyadav1423 2 жыл бұрын
I want more programming questions on single topic so that it can easily remember me the codeing
@adarshyadav1423
@adarshyadav1423 2 жыл бұрын
Coding*
@ramjr3628
@ramjr3628 2 жыл бұрын
I am really bad at understanding difference between for,while and do while.So , please upload series of problems which can be solved efficiently only through while loop.
@nerd2544
@nerd2544 2 жыл бұрын
you need a computer science course not programming course, explained in one sentence: FOR and DO WHILE is a "pre-test" loop but WHILE DO is a "post-test" loop
@BeLikeSairaj
@BeLikeSairaj Ай бұрын
#include int main(){ int number; printf("Enter the number: "); scanf("%d", &number); int count = 10; while (count >= 1) { int product = number * count; printf(" %d*%d = %d ", number, count, product); count = count - 1; } return 0; }
@shivamchauhan6404
@shivamchauhan6404 2 жыл бұрын
#include int main(){ int raajbhog = 1; while(raajbhog
@hunter9544
@hunter9544 5 ай бұрын
#include int main() { // Write C code here int number; printf("insert thy number: "); scanf("%d", &number); int count=10; while (count >=1) { int product=count * number; printf("%d ", product); count--; } return 0; } Arise
@amitube663
@amitube663 Жыл бұрын
#include int main (){ // multiplication table for a agiven, that prints from 10 to 1. int number; printf("Enter number: "); scanf("%d", &number); int count=10; while(count>=1){ int product=number*count; printf("%d*%d=%d ", number, count, product); count = count-1; } return 0; }
@Darkness-898
@Darkness-898 4 ай бұрын
Programming Task: #include int main() { int num=9; int count=10; int product; do { product=num*count; printf("%d*%d=%d ", num, count, product); count=count-1; } while(count>=1); return 0; } Programiz Quiz Answer: Option (D) All of the above
@aderolearnsengineering
@aderolearnsengineering Жыл бұрын
a. while() {...}
@irambonaaime2116
@irambonaaime2116 Ай бұрын
you have talent to explain c programming
@onic9623
@onic9623 Жыл бұрын
Option D : All Of The Above ------------------------------------------------------------------------------- While : #include int main() { int num, product; int count = 10; printf("Enter A Number : "); scanf("%d", &num); while (count >= 1) { product = count * num; printf("%d*%d=%d ", count, num, product); count = count - 1; } return 0; } ---------------------------------------------------------------------------------------------------------- Do While : #include int main() { int num, product; int count = 10; printf("Enter A Number : "); scanf("%d", &num); do { product = count * num; printf("%d*%d=%d ", count, num, product); count = count - 1; } while (count >= 1); return 0; }
@samadhandudhal7046
@samadhandudhal7046 2 жыл бұрын
Upload all lecture as early as possible
@nutella.mp4853
@nutella.mp4853 9 ай бұрын
#include int main() { int number; printf("Enter a number: "); scanf("%d", &number); int count = 10; while (count >= 1) { int product = number * count; printf("%d*%d = %d ", number, count, product); count = count - 1; } return 0; }
@JenniferPChung
@JenniferPChung 3 күн бұрын
These are amazing! Thank you for being so incredibly clear.
@socialzone1676
@socialzone1676 Жыл бұрын
#include int main() { int a; printf("Enter your Number :%d",a); scanf("%d",&a); int b =10; while (1
@JNM_7.7
@JNM_7.7 6 ай бұрын
#include int main(){ int number; scanf("%d", &number); int another=12,result; do{ result= number*another; printf("%d ", result); another-=1; } while(another>=0); return 0; }
@mohanvenkateshravulapalli7739
@mohanvenkateshravulapalli7739 11 ай бұрын
#include int main(void) { int num; printf("Enter the number : "); scanf("%d",&num); int count = 10; while (count>=1) { int product = num*count; printf("%d*%d= %d",num,count,product); count = count-1; printf(" "); } return 0; }
@himayauwangi6767
@himayauwangi6767 2 жыл бұрын
#include int main(void) { int number, product; int count = 10; printf("Enter a number : "); scanf("%d", &number); while(count >= 1) { product = number * count; printf("%d * %d = %d ",number , count ,product); count -= 1; } return 0; }
@bhavanasai6981
@bhavanasai6981 2 ай бұрын
d
@sunnahboy6223
@sunnahboy6223 Жыл бұрын
#include int main() { int number; printf("Enter number "); scanf("%d",&number); int count=10; while (count=1){ int multi = number * count; printf("%d*%d=%d ",number,count,multi); count = count - 1; } return 0; }
@nichocolatereal
@nichocolatereal 10 ай бұрын
#include int main() { int number=9; int count=10; while (count>0){ int result=number*count; printf("%d*%d=%d ",number,count,result); count=count-1; } return 0; }
@zeherzeeshan3547
@zeherzeeshan3547 10 ай бұрын
int n,c; printf("enter a number: "); scanf("%d",&n); for(c=10;c>=1;c--) { printf("%d*%d = %d ",n,c,n*c); }
@siddharth840
@siddharth840 Жыл бұрын
#include int main(){ int numb; printf("Enter the number: "); scanf("%d",&numb); int count=10; while(count>=1){ int product = numb * count; count = count - 1; printf("%d ",product); } return 0; } 12:08 answer
@gayathri0301
@gayathri0301 3 ай бұрын
#include int main() { int number; printf("enter the number:"); scanf("%d",&number); int count=10; while(count>=1) { int product=number*count; printf("%d*%d=%d ",number,count,product); count=count-1; } return 0; } Mam here is the programing task code
@renalynf.jurilla6705
@renalynf.jurilla6705 Жыл бұрын
D
@stellicpiano
@stellicpiano Жыл бұрын
right ✅
@ielts_frustration
@ielts_frustration Ай бұрын
#include int main(){ int number; printf("Enter your number:"); scanf("%d", &number); int count=10; while(count>=1){ int product= number * count; printf("%d*%d=%d ", number, count, product); count=count-1; } return 0; }
@umutcanylmaz7713
@umutcanylmaz7713 4 ай бұрын
#include int main() { int number = 9; int count = 10; while(count>=1) { int product = number*count; printf("%d*%d= %d ",number,count,product); count-- ; } return 0; }
@Mc.Gucket
@Mc.Gucket 11 ай бұрын
#include İnt main(){ İnt sayı; İnt çarpan; Printf("enter the number" Scanf("%d",& sayı) çarpan==1 While(çarpan
@sawewfelipe7480
@sawewfelipe7480 3 ай бұрын
if i is not being incremented, the answer is D #include int main() { int n; scanf("%d", &n); int c=10; do { printf("%d * %d = %d ",n, c, n*c); c=c-1; }while(c>=1); return 0; }
@sivvaabhinay
@sivvaabhinay Ай бұрын
#include int main(){ int number; printf("Enter your desired number:"); scanf("%d",&number); int count=10; int result; while(count>=1){ result=count*number; printf("%d*%d=%d ",number,count,result); count=count-1; } return 0; }
@navieredwardeenhilal4192
@navieredwardeenhilal4192 5 ай бұрын
#include int main(){ int i = 10; int ask; int product; printf("Enter number: "); scanf("%d", &ask); while (1
@shivamchauhan6404
@shivamchauhan6404 2 жыл бұрын
Is the answer of the quiz is option B?
@shivamchauhan6404
@shivamchauhan6404 2 жыл бұрын
// Online C compiler to run C program online // C program to print reverse table of any number #include int main() { // Write C code here int number; printf("Table of: "); scanf("%d", &number); int count = 10; while(count >= 1 ){ int product = number * count; printf("%d * %d = %d ", number , count, product ); count = count - 1; } return 0; }
@nbtech2006
@nbtech2006 3 ай бұрын
#include int main() { int number,count=10; printf("Enter a number?"); scanf("%d",&number); while(count>=1) { int product=number*count; printf("%d x %d =%d ",number,count,product); count=count-1; } } is this correct?
@drscorpion1624
@drscorpion1624 Жыл бұрын
option c
@Cartoons5001HD
@Cartoons5001HD 9 ай бұрын
Programming Task #include int main() { int number; int count=10; printf("Enter a number:"); scanf("%d",&number); while(count>0){ int product=number*count; printf(" %d * %d= %d",number,count,product); count--; } return 0; }
@Clog17
@Clog17 4 ай бұрын
#include int main() { int num; int count = 10; int result; printf("Please enter a number: "); scanf_s("%d", &num); while (count >= 1) { result = num * count; printf("%d * %d = %d ",count,num, result); count--; } return 0; }
@seabasschukwu6988
@seabasschukwu6988 Жыл бұрын
this was a harder concept to teach but you did an excellent job
@toluoyelola1101
@toluoyelola1101 11 ай бұрын
printf("enter a number: "); int num; scanf("%d", &num); int count=10; do{ int product=num*count; printf("%d*%d= %d ", num, count, product); count-=1; } while(count>=1 && count
@im-teazsohan1934
@im-teazsohan1934 3 ай бұрын
int main() { int count=10; while(count>=1){ int mul=9; int product=mul*count; printf("%d*%d=%d ",mul,count,product); count=count-1; } return 0; }
@bignaughtydog
@bignaughtydog Жыл бұрын
/* Example 3. While program to print multiplication table from 10 to 0.*/ #include int main(){ int number; printf("Please enter a number to be multiplied: "); scanf("%d", &number); int count = 10; while(count >= 0) /* This is the test expression*/ { int product = count * number; /* This is the body of the do loop*/ printf("%d * %d = %d ", number, count, product); --count; } return 0; }
@meriem.br0
@meriem.br0 9 ай бұрын
which one the causes is an infinite loop, is it B ?
@worldgeography2537
@worldgeography2537 11 ай бұрын
#include int main() { int value2; printf(" enter your value2:"); scanf("%d",&value2); int multiplication = 10; while(multiplication>=1) { int value1 = value2*multiplication; printf(" %d*%d=%d",value2,multiplication,value1); multiplication = multiplication -1; } return 0; } done
@21pradaofficial4
@21pradaofficial4 Жыл бұрын
Thank God for your channel and videos 💪🏽🔥🔥❤
@ProfessorTutorial-yp5ux
@ProfessorTutorial-yp5ux Жыл бұрын
#include int main(){ int number, count, product; printf("Enter a number: "); scanf("%i", &number); count = 10; do{ product = number*count; printf(" %i*%i = %i",number,count,product); count -=1; }while(count>=1); return 0; }
@TheUsername59
@TheUsername59 Жыл бұрын
Wrong solution correct output: #include int main () { int number = 0; int cycle = 1; int b=0; printf("Please enter a number: "); scanf("%d", &number); while (cycle
@monishwarankumar
@monishwarankumar Жыл бұрын
#include int main() { int n; printf("enter n;"); scanf("%d",&n); int m=100; while (m>=1) { int pro=n*m; printf("%d*%d=%d ",n,m,pro); m=m-1; } return 0; }
@adymainz
@adymainz Жыл бұрын
kindly do c++,pascal,C#,java and xml totorials plz
@anandkumar3002
@anandkumar3002 2 ай бұрын
#include int main() { int number; printf("Enter the number: "); scanf("%d", &number); int count = 10; while(count >= 1) { int product = number * count; printf("%d*%d = %d ", number,count,product); count = count - 1; } return 0; }
@solomonbalogun7651
@solomonbalogun7651 Жыл бұрын
d
@sushil6508
@sushil6508 4 ай бұрын
// Online C compiler to run C program onlin #include int main() { int number; printf("Please enter the number:"); scanf("%d", &number); int count =10; while (count>=1) { int prod= number*count; printf("%d*%d=%d ", number,count,prod ); count = count-1; } return 0; }
@hemanthkumarc1828
@hemanthkumarc1828 Жыл бұрын
#include int main() { int number; printf("enter the number :"); scanf("%d",&number); int count=10; do { int product=number*count; printf("%d*%d=%d ",number,count,product); count=count-1; } while(count>=1); return 0; }
@mypc-b8x
@mypc-b8x 4 ай бұрын
#include int main() { int number; printf("enter nuber: "); scanf("%d" , &number); int count =10; do{ int product = number * count; printf(" %dX%d=%d" , number,count , product); count = count -1; }while(count>=1); return 0; } done 😁
@kishanmangukiya1555
@kishanmangukiya1555 Жыл бұрын
#include #include void main() { int a,b=10,c; clrscr(); printf("Enter a value:"); scanf("%d",&a) while(a>=1) { c=a*b; printf("%d*%d=%d ",a,b,c); b=b-1; } getch(); }
@AbhiramDeshpande-fe1vi
@AbhiramDeshpande-fe1vi Жыл бұрын
#include #include int main() { int num; printf(" Enter a Number:"); scanf("%d",&num); int count=10; while(count>= 1) { int product= num * count; printf("%d*%d=%d ",num , count , product); count= count- 1; } return 0; }
@Project.i
@Project.i 6 ай бұрын
//multipication using while loop in reverse #include int main(){ int number; printf("Enter the number to perform multipication table: "); scanf("%d", &number); int count = 10; while (count >= 1){ int product = number * count; printf("%d*%d = %d ", number, count, product); count = count - 1; } return 0; }
@emnanaitibourk5995
@emnanaitibourk5995 Жыл бұрын
The answer of the quiz is 4 All above
@anasasif8714
@anasasif8714 11 ай бұрын
#include int main() { int number; printf("enter table number:"); scanf("%d",&number); int count=10; while(count>=1){ int product=number*count; printf("%d*%d=%d ",number,count,product); count=count-1; } return 0; }
@formystudies9179
@formystudies9179 11 ай бұрын
#include int main() { int n,i,p; printf("enter a number :"); scanf("%d",&n); i=10; while (i=1) { p=n*i; printf("%d*%d = %d ",n,i,p); i--; } }
@ShyamVardhanB
@ShyamVardhanB Жыл бұрын
#include int main() { int num,i=10,ans; printf("Enter the number to get table "); scanf("%d",&num); while(i>=1){ ans=num*i; printf("%d*%d=%d ",num,i,ans); i=i-1; } return 0; }
@nihatdonmzov4166
@nihatdonmzov4166 Жыл бұрын
The answer of the quiz is D(all the above).
@sirishasaragadam7603
@sirishasaragadam7603 2 жыл бұрын
Thank you mam☺
@light-warrior
@light-warrior 8 ай бұрын
task: #include int main() { int number; printf("Enter a number: "); scanf("%d", &number); int count = 10; while (count >= 1) { int product = number * count; printf("%d*%d = %d ", number, count, product); count = count - 1; } Option D is correct.
@zuko8023
@zuko8023 6 ай бұрын
answer is all of the above. i belive you forgot the semi-colon at the end of the do while loop
@mohammadabdullahaalforhad1375
@mohammadabdullahaalforhad1375 Жыл бұрын
//multiplication table print from (10-1)using while loop #include int main() { int number; printf("enter the value of number: "); scanf("%d", &number); int i=10; while (i>=1) { int product =number*i; printf("%d * %d= %d ",number,i, product); i--; } }
@rajtmg
@rajtmg Жыл бұрын
// Online C compiler to run C program online #include int main() { int number; int count =10; printf("Enter a number"); scanf("%d",&number); while(count>=1) { printf("%d*%d=%d ",number,count,number*count); count= count-1; } return 0; }
@yogithabale
@yogithabale 3 ай бұрын
opt A while(1){...} causes an infinite loop
@collinsderrick8802
@collinsderrick8802 Жыл бұрын
All of above
@ForCollage-r8j
@ForCollage-r8j 5 ай бұрын
#include int main() { int number; printf("enter a number:"); scanf("%d", &number); int count=10; while(count>=1) { int product=number*count; printf("%d*%d=%d ", number, count, product); count=count-1; } return 0; }
@praneethbolla3449
@praneethbolla3449 2 ай бұрын
we can use decrement like count-- cant we
@francemakwakwa
@francemakwakwa Жыл бұрын
#include int main(){ int nine=9; int num=11; while(num>1){ num--; int product=nine*num; printf("%d ", product); } return 0; }
@kk_dipper_1549
@kk_dipper_1549 10 ай бұрын
I'm sooooo thankful for u!!!! Thank you so much!!
@HellensAngels
@HellensAngels 5 ай бұрын
The "do {} while var;" loop is beautiful 🤩
@popops3
@popops3 Жыл бұрын
Is there a reason to not declare int product outside the while loop and then only use product = number * count; ?
@randommanxe2451
@randommanxe2451 3 ай бұрын
might be a little late but you can declare your product whenever you want and can you some other variable expect product as long as you declare it
@Ech-chatouiMohammed
@Ech-chatouiMohammed 21 күн бұрын
great content , keep moving
@akshitaprajapat225
@akshitaprajapat225 2 жыл бұрын
Thank you so much ma'am This is really very helpful to me 🥰🥰🥰🥰🥰 And your accent is so understable 🙏🙏🥰🥰 Please ma'am keep doing this I'm also using that app 😊
@ifeelkakarot
@ifeelkakarot 11 ай бұрын
#include int main() { int number; printf("which table you want to know:"); scanf("%d",&number); int count=10; while(count0) { int product = count * number; printf("%d*%d=%d ",number,count,product); count = count - 1; } return 0; }
@lakshanj.kumara7648
@lakshanj.kumara7648 Жыл бұрын
#include int main(){ int num=9; int count=10; while(count0){ int product=num*count; printf("%d*%d=%d ",num,count,product); count-=1; } }
@bhavanasai6981
@bhavanasai6981 Ай бұрын
#include int main() { int number; printf("Enter the Number: "); scanf("%d", &number); int count = 10; while (count >= 1){ int product = number * count; printf("%d*%d =%d ",number,count,product); count -= 1; } return 0; }
@vikaskadimani
@vikaskadimani 4 ай бұрын
you explained the concepts nicely but you taught the students the concepts under the particular topic like: in this video, you taught the concept called " while loop" but it is under what topic you gave a declaration about like while loop under the " looping statements in C" and if statement under like " conditional statements and all because you teach all concepts as separately then, students think that all concepts are different only not inside one topic so while during making a video about the concepts that you need to give the justification like which concept came under which concept and all like this you first provide the justification about the concept mam then and then only your video will be more effective otherwise not yet all so this is what I conclude by seeing your video finally, I said "Your concepts are clearer no doubt about that but the way of justifying the concepts is wrong so please recover these mistakes in your next videos and all
@vikaskadimani
@vikaskadimani 4 ай бұрын
please reply to me so that my comment is right or wrong frankly?
@williamowusu7778
@williamowusu7778 Жыл бұрын
Thanks I'm getting better at C
@Selcuk._._
@Selcuk._._ 5 ай бұрын
Can it get any shorter than that? int num, count = 11; printf("Enter number: "); scanf_s("%d", &num); while (count-- > 1) printf("%d x %d = %d ", num, count, num * count);
@agneskanze2719
@agneskanze2719 11 ай бұрын
the answer is D all of the above
@shraiykhaddar
@shraiykhaddar 2 жыл бұрын
ALL OF THE ABOVE
#13: for Loop in C Programming | C Programming for Beginners
10:28
Coding Was HARD Until I Learned These 5 Things...
8:34
Elsa Scola
Рет қаралды 492 М.
Watermelon magic box! #shorts by Leisi Crazy
00:20
Leisi Crazy
Рет қаралды 36 МЛН
Офицер, я всё объясню
01:00
История одного вокалиста
Рет қаралды 4,4 МЛН
#11: Switch Statement in C | C Programming for Beginners
11:10
Programiz
Рет қаралды 151 М.
#15  C Functions | C Programming for Beginners
17:21
Programiz
Рет қаралды 211 М.
#9: If Else Statements in C | C Programming for Beginners
12:51
Programiz
Рет қаралды 188 М.
How I Would Learn Python FAST in 2024 (if I could start over)
12:19
Thu Vu data analytics
Рет қаралды 358 М.
#14 : break and continue in C | C Programming for Beginners
10:31
Why You Shouldn't Nest Your Code
8:30
CodeAesthetic
Рет қаралды 2,7 МЛН
#19 C Arrays | C Programming For Beginners
13:27
Programiz
Рет қаралды 249 М.
Watermelon magic box! #shorts by Leisi Crazy
00:20
Leisi Crazy
Рет қаралды 36 МЛН