Arrays in C (Solved Problem 2)

  Рет қаралды 360,404

Neso Academy

Neso Academy

Күн бұрын

Пікірлер: 211
@creatorsayanb
@creatorsayanb 4 жыл бұрын
You are great Sir. I follow the lectures of you. That are very easy after watching. Thanks a lot Sir. A big salute to you.
@nik-ys8ki
@nik-ys8ki 4 жыл бұрын
interesting solution what i did was lengthy perhaps, but this is short and more logical way of doing things. instead of checking on digit by digit you solve the problem in nice and smooth manner
@vijaysinghchauhan7079
@vijaysinghchauhan7079 5 жыл бұрын
hey,neso academy team can you plss.. upload videos on the array operations such as : insertion,deletion,search etc.
@payalsingh4210
@payalsingh4210 Жыл бұрын
The quality of information and knowledge you providing us is far better then any other famous utube coding channels like apni kaksha and all🌻hat's off to you
@tayyab.sheikh
@tayyab.sheikh Жыл бұрын
I'm amazed to see such an intuitive explanation!!!
@kayraalpceylan1775
@kayraalpceylan1775 3 жыл бұрын
what if i enter number "012340", after dividing the first 2 digit which is '01' to 10 it'll give 0 and hence it wouldn't enter while loop and print out "No" so in addition you should also check if it's first is "0" or not.
@Doraemon-cq8jh
@Doraemon-cq8jh Жыл бұрын
>= hona chaiye tha
@punith3969
@punith3969 Жыл бұрын
If u do so, 0 preceding actual number is converted to octal equivalent in c and it proceeds
@pk-uk5lc
@pk-uk5lc Жыл бұрын
​@@Doraemon-cq8jhinfinite loop ho jaayega
@aayushidesai2813
@aayushidesai2813 4 ай бұрын
0 is quotient and we need the remainder which we get 1
@lalit2926
@lalit2926 4 жыл бұрын
I have made that program but using another logic. But sir your logic is comparatively more short and easier..... 👍👍👍
@vijayalakshmiv1720
@vijayalakshmiv1720 4 жыл бұрын
I am becoming fan of neso academy your lectures were awesome
@onaspnet
@onaspnet 4 жыл бұрын
function hasDuplicates(num) { var digits = []; while(num > 0) { digits.push(num % 10); num = Math.floor(num / 10); } digits.sort(); for(var i = 0; i < digits.length - 1; i++) { if(digits[i] == digits[i+1]) return true; } return false; }
@ashanthilochana4339
@ashanthilochana4339 2 жыл бұрын
You can avoid the part 3 while (num>0){ N = num % 10; if (arr[N] == 1){ printf("Yes!"); } arr[N] = 1; num = num / 10; } like this. Thank you for your video series. I learned lot of things ❤❤
@dipeshranadipeshrana881
@dipeshranadipeshrana881 2 жыл бұрын
Yes but it is for user satisfaction. That according to his/her input program displays correct information
@kanhaiyasuryawanshi3677
@kanhaiyasuryawanshi3677 2 жыл бұрын
the way you explain the things, it's just excellent.
@krishsharma162
@krishsharma162 3 жыл бұрын
I want to say, this is the best content
@sreemoyeepradhan7707
@sreemoyeepradhan7707 2 жыл бұрын
Your videos are mesmerizing sir ! Thank you so much for uploading these....🤗
@javancheongyujing2531
@javancheongyujing2531 Жыл бұрын
I got another idea using 2 array of string character. Then compare using nested loop. A1 vs B1, A1 vs B2.. A2 vs B1, A2 vs B2..
@payalsingh4210
@payalsingh4210 Жыл бұрын
But woo ise bada ho jaye ga..and time me bhi difference aye ga....phele mene bhi wahi socha tha and then I realise his method is more accurate and fast
@abderrahimbenmhand2129
@abderrahimbenmhand2129 4 жыл бұрын
The best Teacher, I learn a lot from you
@amitbanger635
@amitbanger635 5 жыл бұрын
wow sir just wow
@nskchaitanya2671
@nskchaitanya2671 2 жыл бұрын
great logic ,when i tried on my own it took 3 for loops,but with this one while loop is enough
@achugh52
@achugh52 4 ай бұрын
this is an innovative way of doing it . generally people apply nested loops for solving
@imcoder2250
@imcoder2250 3 жыл бұрын
you are doing great job sir.......thankyou sir....the way you teach is fabulus......thankyou so much sir
@sourav.singh29
@sourav.singh29 4 жыл бұрын
Please make a playlist on algorithms....nd try to cover all topics with prerequisites
@MKSundaram
@MKSundaram 4 жыл бұрын
Do you have any video explaining a program to check whether any alpahbets is repeated? By using the same formula, I mean without using for loops. Thanks
@smartworld3686
@smartworld3686 Жыл бұрын
While( n>0) Rem=n%10 If( rem==rem) Print("number is twice display") N=n/10 }
@smartworld3686
@smartworld3686 Жыл бұрын
Is it correct
@Hiyori___
@Hiyori___ 4 жыл бұрын
here's the code to print how many times a digit is repeated, hope it helps. #include int main() { //create array full of zeros int seen[10]={0}, i; int N; printf("pls insert a number "); scanf("%d", &N); int rem; //while loop to count how many times a number while (N>0) { rem=N%10; seen[rem]=(seen[rem]+1); N=N/10; } for (i=0; i
@universalstarcpu9522
@universalstarcpu9522 3 жыл бұрын
Have u compiled it ? Does it produced the crct result?
@universalstarcpu9522
@universalstarcpu9522 3 жыл бұрын
Can anyone tell 1)the prgrm to know what are the digits that are repeated in the given number? 2)the prgrm to know which digit repeated and how many times it is repeated in the given number?
@mdzaid3880
@mdzaid3880 3 жыл бұрын
#include int main() { int seen[10] = {0}, rec[10] = {0}; int N, rem; printf("\tenter the number : "); scanf("%d", &N); while (N > 0) { rem = N % 10; if (seen[rem] == 1) { rec[rem] = rec[rem] + 1; } else { seen[rem] = 1; } N = N / 10; } for (int i = 0; i < 10; i++) { if (rec[i] > 0) { printf(" \t%d is repeated %d times.", i, rec[i] + 1); } } return 0; }
@Ishika_eva
@Ishika_eva 11 ай бұрын
Its amazing to learn ,such a good explaination,thanks a lot.
@SportsGyan_
@SportsGyan_ 4 жыл бұрын
What will be the output if value is 50 At last after if condition value of N =5 , which is greater than 0 so output is yes..but there is no repetition
@juanmoscoso0
@juanmoscoso0 4 жыл бұрын
it will divide 5 by 10 and give 0
@user-pj8qg
@user-pj8qg 5 жыл бұрын
Can you make more videos on array and string
@accessdenied9393
@accessdenied9393 3 жыл бұрын
Another method using bruteforce instead of math: int main(void) { int array[] = {10, 20, 30, 40, 10, 10, 70, 80, 90}; int count = sizeof(array) / sizeof(array[0]); for (int i = 0; i < count-1; i++) { for (int j = i+1; j < count; j++) { if (array[i] == array[j]) { printf("%d ",array[i]); } } } return 0; } Say you've got 9 items in an array and want to compare each pair of items: start with the first one, and compare it to each of the other 8 items in the array. That's 8 comparisons so far. Then move to the second one. No need to compare it to the first item, you already did that, so compare to each of the remaining 7 items. Repeat this process and you'll end up with 8+7+6+5+4+3+2+1=36 comparisons. And that's just what the code above does
@adamlupu5885
@adamlupu5885 2 жыл бұрын
This is what came to me at first too..but the time complexity is way worse.
@e-ponnobangladesh5387
@e-ponnobangladesh5387 5 жыл бұрын
we need data structure and algorithm from you.
@Randibaaj_sala
@Randibaaj_sala 4 жыл бұрын
kar diya hai lavde
@adithya3890
@adithya3890 4 жыл бұрын
@@Randibaaj_sala swag😂😂
@Godl_Damon
@Godl_Damon 4 жыл бұрын
hi guys are you alive in this covid period 😂😂🤣😂😂😅☺😅🤣😂🤣😅🤣😂😅🤣😂🤣😅
@sambhavsrivastava6015
@sambhavsrivastava6015 3 жыл бұрын
@@adithya3890 tmhre amma ki jai.
@alkapathak59
@alkapathak59 5 жыл бұрын
thank you for detailed explanation.
@MolletiSaiRevanth
@MolletiSaiRevanth 2 ай бұрын
Your teaching like god level
@shreyasingh222
@shreyasingh222 3 жыл бұрын
Thanks Sir for this video... it's really helpful...
@NaveenKumar-li7tl
@NaveenKumar-li7tl 3 жыл бұрын
excellent teaching Thank for helping sir!
@AdarshKumar-vt7wc
@AdarshKumar-vt7wc 2 жыл бұрын
sir please try to use for or do while loop cuz while loop is kinda useless and only takes our time to learn . practically for loop +if else statement could act as a while loop.
@VashishtArora
@VashishtArora 2 жыл бұрын
Instead of assigning the value 1 shouldn't we assign the remainder in the array and break if the value is not equal to 0?
@dipeshranadipeshrana881
@dipeshranadipeshrana881 2 жыл бұрын
Of course we can. I am also thinking about it.
@TYGAMatt
@TYGAMatt 4 жыл бұрын
Great teacher
@ozgeylmaz8685
@ozgeylmaz8685 Жыл бұрын
very good example thank you for the videos
@andistheinforitbutso7513
@andistheinforitbutso7513 3 жыл бұрын
We can manipulate this code and can find out:- 1. Which number is repeated how many times? 2. We can even used it for alphabets. 3. We can build a program to find out repeated alphanumeric names.
@rohitupasani3239
@rohitupasani3239 9 ай бұрын
I have a question: what if we change the size of the array rather than 10 which you have declared in the video what will happen if we change it to any other size , will it give the wrong output or will it work fine
@mayurborse6096
@mayurborse6096 4 жыл бұрын
I also thought 💭 , if given no is like 35385 or any other then what logic we have to add ? Many of your subscribers also want it's solutions as you take attention to comments . So I kindly request you to give ethier a small reply from you or a presentation .
@vivektripathi9863
@vivektripathi9863 4 жыл бұрын
then applay for loop in for loop with the same logic use nested if situation you will get the output how many time a digit has been repeated
@vivektripathi9863
@vivektripathi9863 4 жыл бұрын
#include int main() { int num,rem,i,j,k,num2,count=0; printf("enter the number :"); scanf("%d",&num); printf("enter the number which you want to check in given digit"); scanf("%d",&num2); while(num!=0) { rem=num%10; //it will give us remender means last digit of a line if(num2==rem) count++; num=num/10; } printf("_______________ "); printf("here %d occure in %d time in digit",num2,count); return 0; }
@pankajkesharwani8088
@pankajkesharwani8088 2 жыл бұрын
@@vivektripathi9863 how bro i am not getting that
@vivektripathi9863
@vivektripathi9863 2 жыл бұрын
@@pankajkesharwani8088 what error you are facing bro ?
@praveen9202
@praveen9202 5 жыл бұрын
Sir please complete power systems please .....i eagerly waiting to have grip on it
@jaideepsh
@jaideepsh 4 жыл бұрын
wow what a solution sir ji
@jaideepsharma9353
@jaideepsharma9353 4 жыл бұрын
ma man jaspr!
@mayankshigaonker7725
@mayankshigaonker7725 4 жыл бұрын
Hello Sir, I solved this problem before watching your solution and this is what I came up with. #include int main() { int num, nums[5], dup = 0; //Input stage printf("Please enter a five digit number: "); scanf("%d", &num); // Processing stage int temp = num; //Transferring each digit of num to the array nums for(int counter = 0; counter < 5; ++counter) { nums[counter] = temp % 10; temp /= 10; } //The algorithm for(int counter = 0; counter < 5; ++counter){ for(int counter1 = (counter + 1); counter1 < (5 - counter); ++counter1) if(nums[counter] == nums[counter1]){ dup = 1; break; } if(dup) break; } //Output stage if(dup) printf("%d has a repeated number", num); else printf("%d does not have a reapeated number in it", num); return 0; } BTW I your program is better than myn because of obvious reasons:)
@someshkarmakar47
@someshkarmakar47 3 жыл бұрын
Great. Thanks 😌
@sandysandy3287
@sandysandy3287 5 жыл бұрын
Sir ......if a=10; x=a++; What is the value of x here ??
@alkapathak59
@alkapathak59 5 жыл бұрын
since it is a post fix expression ,value of x =10, as the value is assigned before increment is done on ' a '.
@sandysandy3287
@sandysandy3287 5 жыл бұрын
@@alkapathak59 thanks
@mhmdfathi6780
@mhmdfathi6780 5 жыл бұрын
a=11
@tchgs11zdok15
@tchgs11zdok15 5 жыл бұрын
@@mhmdfathi6780 a yeah, but x=10
@mdzaid3880
@mdzaid3880 3 жыл бұрын
Bhai , a=10; In case of x=a++; x=10 but a =11. cause of post increment of value of a. But for x=++a; we get, x=11 and a = 11.cause of pre increment of value of a.
@AmanaFathima-qt9ud
@AmanaFathima-qt9ud 8 ай бұрын
please upload more questions its highly helpful
@kumarshwetank1256
@kumarshwetank1256 5 ай бұрын
Pw c programming array waha vi kraye h bhot question
@Aabara_ka_dabara
@Aabara_ka_dabara Жыл бұрын
new approach to this Question..😄
@aakankshagarg8423
@aakankshagarg8423 5 жыл бұрын
Really gud video.... Keep doing this..
@hansbhai7453
@hansbhai7453 4 жыл бұрын
yes,its true
@ssr6948
@ssr6948 2 жыл бұрын
beautiful solution sir.
@A-M-A-N-G
@A-M-A-N-G 3 жыл бұрын
What if when number is repeated more than once ...how we can calculate its length
@ismaail8620
@ismaail8620 4 ай бұрын
if you give the n = 00; the output gonna be no and thats incorrect
@lokeshjoshi5672
@lokeshjoshi5672 Жыл бұрын
//An alternate method #include int main() { int a[5],i,j,count=0; printf("Enter 5 numbers"); for(i=0;i
@mauryaashish1865
@mauryaashish1865 4 жыл бұрын
You are best sir! 😊
@neemakalpure
@neemakalpure 3 жыл бұрын
Best explaination ever.
@muhammadsharif9192
@muhammadsharif9192 2 жыл бұрын
amazing one sir
@biswarupsou5144
@biswarupsou5144 6 ай бұрын
If the number input is 1000 It won't be >0
@qandos-nour
@qandos-nour 4 жыл бұрын
very nice ans smart program thanks
@jameswen-o3v
@jameswen-o3v Жыл бұрын
Please help me,my English is bad,where does the two at 4:41 come from? Can anyone help me, I know this question 😂is kind of stupid 😢
@jameswen-o3v
@jameswen-o3v Жыл бұрын
All right, I‘m good now,thanks
@chacho2340
@chacho2340 2 жыл бұрын
great idea sir
@varshaaggarwal9040
@varshaaggarwal9040 5 жыл бұрын
Sir i am not able to design algorithms of programs, like the program explained in this video. What should I do?
@priyanshtiwari8317
@priyanshtiwari8317 4 жыл бұрын
refer geeksforgeeks
@spoofer9113
@spoofer9113 3 жыл бұрын
yeah even I did made a program to get this output but my code and way of thinking was not like this. I don't know what to do
@ilyasmouhtadi198
@ilyasmouhtadi198 2 ай бұрын
great job
@suhanagupta9624
@suhanagupta9624 3 жыл бұрын
Thank you sir .🙂
@captainjow1518
@captainjow1518 5 жыл бұрын
I also solved it but mine is kinda weak since I needed to know how many digits is the input and then take it one by one and do a comparison but yours is much more convenient and smarter , I feel dumb
@vivektripathi9863
@vivektripathi9863 4 жыл бұрын
#include int main() { int num,rem,i,j,k,num2,count=0; printf("enter the number :"); scanf("%d",&num); printf("enter the number which you want to check in given digit"); scanf("%d",&num2); while(num!=0) { rem=num%10; //it will give us remender means last digit of a line if(num2==rem) count++; num=num/10; } printf("_______________ "); printf("here %d occure in %d time in digit",num2,count); return 0; }
@yahia1355
@yahia1355 4 жыл бұрын
this is very smart!
@tanuja2853
@tanuja2853 5 жыл бұрын
in previous video you said that ;;;;;if we take a[10] it will take only 10 numbers ::::but in the above video i took seen[4] but entered value is 6 digit program executes and why should we tak that seen[10]={0}
@hil449
@hil449 3 жыл бұрын
aww, nice solution. Im so stupid, I straight up read the number as a string of characters and looped through the string checking if we have repeated chars lmao
@HelloWorld40408
@HelloWorld40408 2 жыл бұрын
Thank You Sir
@annamalai31rv99
@annamalai31rv99 5 жыл бұрын
Thank you neso
@topgemaldo6964
@topgemaldo6964 5 жыл бұрын
Excellent 👍👍👍👍
@souvikpaul7250
@souvikpaul7250 2 жыл бұрын
What if I enter '1070'? In this case 0 is repeated, but if 0 is the reminder, then it won't iterate... It should exit the loop, but it does complete it's task, why?
@priyalamba5288
@priyalamba5288 2 жыл бұрын
it will iterate for sure because we are checking whether 1 is stored in arr[rem=0] or not...so there is no effect of rem being 0 in the first case but when the rem again comes out to be zero..it will come out of the loop as the value at arr[0] is already equal to 1 because of the first rem. that's why this code is able to check all the positive integera.
@sarapreethi7200
@sarapreethi7200 5 жыл бұрын
Why we using the condition in if statement as n>0
@marbles5590
@marbles5590 2 жыл бұрын
not applicable if we enter such number like 0091 for instance. Answer would be "No" despite the repeating zeroes
@dachinoloko7624
@dachinoloko7624 3 жыл бұрын
At first I tried it didn't work and I modified the part 3 section and after that still not working, I switched it back to the original as below: If(N>0) printf("Yes"); else printf("No"); it works. but then I thought of another method like this: if (N==0) puts("No"); else puts("Yes"); which is much simpler and it works too. The reason why if u key in 000 or 001 and so anything with 0 in the beginning followed by a value, compiler will ignore the zero and read it as 1 in case of 01, 001, try putting 0011, and it will be understood as 11 and the output will be "YES MACHA!" this is a repeated number
@asharya5311
@asharya5311 3 жыл бұрын
Yes correct! Even I experienced it! int main() { int num,rem; int a[10]= {0}; int count = 0; char c; printf("Enter the number: "); scanf("%d",&num); for( num; num > 0; num/=10) { rem = num%10; if(a[rem] == 0) a[rem]++; else a[rem]++; } for(int i = 0; i=2) { printf("%d is repeated %d times ", i,a[i]); count++;} } if(count == 0) printf("NO digits are repeated "); return 0; } I wrote the above code to check which digit is repeated, for numbers like 000011 it does take into consideration the 0 digit! Do you know the solution?
@anupamsandeep5940
@anupamsandeep5940 3 жыл бұрын
Good Logic sir
@entertainmenttv1084
@entertainmenttv1084 29 күн бұрын
but sir only yes will be coded after dialing any number repeated or nonrepeated 😢😢
@rajlakhanpal
@rajlakhanpal 2 жыл бұрын
With all due respect to math wizards out there, how is 2%10 has a remainder 2? (video time 4:55)
@chakradharthota1100
@chakradharthota1100 3 жыл бұрын
Anybody tell me how the rem is 2 at 4:56
@Atrainn234
@Atrainn234 2 жыл бұрын
Thank you!
@Sushm68999
@Sushm68999 4 жыл бұрын
Clear explaination sir 👏👏👏but pls say some more louder because iam always keeping my earphones 😅
@AshishKhetwal
@AshishKhetwal 19 күн бұрын
amazing!
@nazmapervin7198
@nazmapervin7198 4 жыл бұрын
Thank you sir it was a great video.But when i enter any large number in my program, then it does not work properly. I entered a number which has more than 10 digits. Is it because of that?
@DUALE0
@DUALE0 4 жыл бұрын
int has a specific size of byte upto which it can store a value. For long digit numbers, try long int
@rajan9064
@rajan9064 4 жыл бұрын
thank you so much sir
@nabeelali2178
@nabeelali2178 5 жыл бұрын
In may task having the same problem but i must count every number and print it and how many times it's been repeated
@saikrishna9094
@saikrishna9094 5 жыл бұрын
Sir make network theory videos
@nabiurrahman6637
@nabiurrahman6637 3 жыл бұрын
How do you explain that below program? #include #include int main(){ char s[1000]; int x,i,count[10]={0},a=0; gets(s); for(i=0;i
@learnwiththapa2886
@learnwiththapa2886 3 жыл бұрын
Sir, in Part 2 explaination, 2%10 will give 0 as a remainder which will be returned to rem variable. or am I wrong, please help me with this.
@ttobg
@ttobg 3 жыл бұрын
2 divided by 10 would be 0, and you are left with 2
@learnwiththapa2886
@learnwiththapa2886 3 жыл бұрын
@@ttobg % (modulus) operator returned the remainder value to the variable means I am confused if it is so, variable rem will get value 0.. 2 here is dividend not a remainder..🤔
@agambhatia6496
@agambhatia6496 3 жыл бұрын
@@learnwiththapa2886 remember modulus operator gives the last digit of a number and if the number is itself a single digit then it will return that particular single digit.
@huychu01
@huychu01 3 жыл бұрын
In line 7, if i write : scanf("%d ", &N); , then i must type 2 times the number, the program will run. I don't know why ?
@rishabhkalyani604
@rishabhkalyani604 5 жыл бұрын
what's happen if i input the number 1206? you take the seen array in which all the entries are zero, so in the second comparison of digits the loop will break but zero is not repeating in number. then what should we do?
@sabitharavichandran3391
@sabitharavichandran3391 5 жыл бұрын
he is checking for 1 and not whether the value is same
@rishabhkalyani604
@rishabhkalyani604 5 жыл бұрын
Ohh! ya ya ya Thank you
@thejareddy4380
@thejareddy4380 5 жыл бұрын
Sir neso acadamy will upload network theory classes or not sir please reply sir We are prolonged waiting for NT classes
@sushantxtj3727
@sushantxtj3727 2 жыл бұрын
Thanks
@psykjavier
@psykjavier 4 жыл бұрын
in this video we used the bloom filter and a kind of hash table isn't ?
@user_at180
@user_at180 5 жыл бұрын
sir,this program doesnt give the proper output,if n=non repeated digits,wht op im getting is yes only
@yashwanthrajlakumarapu9738
@yashwanthrajlakumarapu9738 5 жыл бұрын
me 2
@vivektripathi9863
@vivektripathi9863 4 жыл бұрын
@@yashwanthrajlakumarapu9738 #include int main() { int num,rem,i,j,k,num2,count=0; printf("enter the number :"); scanf("%d",&num); printf("enter the number which you want to check in given digit"); scanf("%d",&num2); while(num!=0) { rem=num%10; //it will give us remender means last digit of a line if(num2==rem) count++; num=num/10; } printf("_______________ "); printf("here %d occure in %d time in digit",num2,count); return 0; }
@naurinsultana1166
@naurinsultana1166 4 жыл бұрын
Can we check which digits are repeated and how many times?
@mdzaid3880
@mdzaid3880 3 жыл бұрын
#include int main() { int seen[10] = {0}, rec[10] = {0}; int N, rem; printf("\tenter the number : "); scanf("%d", &N); while (N > 0) { rem = N % 10; if (seen[rem] == 1) { rec[rem] = rec[rem] + 1; } else { seen[rem] = 1; } N = N / 10; } for (int i = 0; i < 10; i++) { if (rec[i] > 0) { printf(" \t%d is repeated %d times.", i, rec[i] + 1); } } return 0; }
@varunvishal
@varunvishal Жыл бұрын
When I am using a 11 digit number such as 12345678901 even after using unsigned long long int data type it is messing up the result. What can be the reason for this?
@Rra132
@Rra132 11 ай бұрын
How to know when to use loops 😢. And when to use n%10 like that thing
@dnegi4691
@dnegi4691 3 жыл бұрын
Sir how can it be compiler u didnt declare rem
@udaykiranbade7872
@udaykiranbade7872 2 жыл бұрын
Whait if num 1234321...... Means after 4 Then it comes to the 3 then if condition satisfies break excute then other numbers are repeated or not we can't find... 😭😭😭
@hamzaeIalaoui
@hamzaeIalaoui 5 жыл бұрын
Please data structures in C
@ravirajsinghsisodiya6120
@ravirajsinghsisodiya6120 Жыл бұрын
Thank0--you
@Meander_Man
@Meander_Man 4 жыл бұрын
Sir if entered digit is 00 this will not work
@true4189
@true4189 4 жыл бұрын
Thank u
Counting Array Elements using sizeof() Operator
4:05
Neso Academy
Рет қаралды 260 М.
Multidimensional Arrays (Solved Problem)
5:21
Neso Academy
Рет қаралды 214 М.
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 20 МЛН
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН
Arrays in C (Solved Problem 1)
4:08
Neso Academy
Рет қаралды 488 М.
Designated Initialization of Arrays
6:22
Neso Academy
Рет қаралды 288 М.
7 Outside The Box Puzzles
12:16
MindYourDecisions
Рет қаралды 280 М.
Introduction to Two-Dimensional (2D) Arrays
10:20
Neso Academy
Рет қаралды 729 М.
Fast Inverse Square Root - A Quake III Algorithm
20:08
Nemean
Рет қаралды 5 МЛН
arrays are weird
6:57
Low Level
Рет қаралды 117 М.
Pointers (Important Questions)
11:11
Neso Academy
Рет қаралды 361 М.
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 20 МЛН