bhai aise hi simple hindi language me videos bnate raho!! mere exam aane waale hai..pehley mujhe fail hone ka darr lg rha tha...but ab aapki videos dekhne ke baad meri tension thodi kam ho gyi hai........thanks bro!!!👍
@@CodeWithHarry I know Aap reply dene se rhe but pher bhi😓 . Explanation Samaj aaya but Code aadha aaya aadha gya Becz aap bhut fast ho gye the or wapas clear bhi nhi bataya ap ne ki kya or Kyu huaa....
@@gunmun2005for loop tab tak chalega jab tak i ki value 4 nhi ho jati aur hame marks ki value bhi char tak print karvani hai isliye sir ne index ki jagah i likha hai taki marks ki char indexes print ho jaye.
harry bhai..i am very greatful for your videos..i lost all my hope that i can write a code..after 1.5 year i started studying again only beacause of your videos. whenever i watch your videos i feel fully charged of energy and confidence.
Its because of two reasons:_ 1)You didn't payed aatention in class or you were hesitate to ask doubt. 2)One on one teaching is more efficient which is provided by youtube.
An array contains “n” elements of numbers. The several elements of this array may contain the same number “x”. Write a program to find the total number of elements which are equal to “x” and also indicate the position of the first such element in the array.
Use linear search. Declare one variable to count the occurence of x. If array[i] == x, increment by 1. Make another array of same size as that of a given array and store the index in that array. Since C is statically typed, use another variable and initialize it to 0. If array[i] == x, store the index number in newarray[counter] and increment the counter by 1 so that whenever another occurence of x happens, the code will automatically put it in the next memory location and give you all the indices where x is located
Thankyou so much sir Apne saach Mai humara C Ka dar bhaaga Diya I am so confused in C and humare college Mai bhi as such preparation nhi kaari due too lockdown or ab humare online exam ho rhe h..... But Apki videos Hume as a angel gift ki Tarah mil rhi h bikul worst condition Mai.... So thankyou so much sir for this help.... 🙏🏻😊
harry bhaiya ek problem mujhe baar baar ati ha... for example maine aaj apse arrays parh lia... ab kya main next lecture pe move krun ya array pr kuch practice krun.. or agar pratice krna ha to wo kahan se or kaise????
Ek proj banadiya at own thanks buddy // Array is just the collection of same data types in C language **Data type should be same** // Multiple data item with just single name // for 2d array means matrices syntax is Data_type_name[row][columns] = {{elements},{elements}}; #include int main() { int a[3][3]={{1,2,3},{1,1,1},{1,0,2}}; for (int i = 0; i < 3; i++) { for (int j = 0; j < 3; j++) {
printf("%d\t",a[i][j]); } printf(" ");
} int d = a[0][0]*(a[1][1]*a[2][2] - a[1][2]*a[2][1]) - a[0][1]*(a[1][0]*a[2][2] - a[1][2]*a[2][0]) + a[0][2]*(a[1][0]*a[2][1] - a[1][1]*a[2][0]);
printf("The determinent of above matices is %d ",d); return 0; }
Sir it is possible to increase array once you have declared it. I confirm because I made a program an din my program, before the array is name[10] but after watching the last section of video I increase array and now this is name[11] and I not get any error and I am in Visual code.
Hello, Harry Bhai, thank you for this best tutorial❤. I have a doubt in this. In VS code, you have first written the code with syntax 1 and then with syntax 2, so is it like syntax 1 and syntax 2 can be used alternatively or like we can use whichever we find it easier ? For 1D array
@@itsmeagain422 try this code... hope it solves ur problem #include int main() { int marks[5]; marks[0]=35; marks[1]=67; marks[2]=72; marks[3]=22; marks[4]=12; for(int i=0;i50) printf("Your marks are %d and congrats you have passed the exam! ",marks[i]); else printf("Your marks are %d and you are fail. ",marks[i]); } return 0; }
First watch Mike dane tutorial 15 ,,link -( ua-cam.com/video/uR3_mxP3VeA/v-deo.html ) then watch this video ,,,watch from 9:30 ,watch at 1.25x speed if u have time then u can watch before 9:30 ,,also after this video u can watch mike dane 2d arrays and nested loops video :)
Sir am watching ur playlist from 1st video But in this u went little fast and mixed up the programs in vsc Ye thoda smz nhi aaya , dusre video dekh rha tha utube pe pr aapke video jitna kahi comfortable nhi hu Is video ko thoda aur elaborate kr k batao pls
bhai aise hi simple hindi language me videos bnate raho!!
mere exam aane waale hai..pehley mujhe fail hone ka darr lg rha tha...but ab aapki videos dekhne ke baad meri tension thodi kam ho gyi hai........thanks bro!!!👍
Bhai agar videos dekhoge to fail na hone ki guarantee meri. Itna vishvas muje khudpar aur tumpar dono par hai :)
All the best bhai aur daro mat!
@@CodeWithHarry I know Aap reply dene se rhe but pher bhi😓
.
Explanation Samaj aaya but Code aadha aaya aadha gya Becz aap bhut fast ho gye the or wapas clear bhi nhi bataya ap ne ki kya or Kyu huaa....
@@CodeWithHarry bhai mark[i] ka meaning kya hai
kya ho raha hai
@@gunmun2005 mark[i] ek 1D array declare kiya gya hai
@@gunmun2005for loop tab tak chalega jab tak i ki value 4 nhi ho jati aur hame marks ki value bhi char tak print karvani hai isliye sir ne index ki jagah i likha hai taki marks ki char indexes print ho jaye.
harry bhai..i am very greatful for your videos..i lost all my hope that i can write a code..after 1.5 year i started studying again only beacause of your videos. whenever i watch your videos i feel fully charged of energy and confidence.
its been 1 year of your comment , i hope you are doing good
@@yashrawat747 now 2 year 💀
same bro
It's nice that you didn't gave up easily and started everything from scratch...hats off to your courage...
@@nakul8385Now 3 years
It's one of the best channel on U tube to learn programming language..❤️
A better explanation in 25 minutes than two weeks of study in college. 🙌
100% right
Its because of two reasons:_
1)You didn't payed aatention in class or you were hesitate to ask doubt.
2)One on one teaching is more efficient which is provided by youtube.
@@-lyxicsdamnnnnnnnnnn 😂😂 bro speaking faxxx
@@-lyxicsbro got tired in traveling to college therefore maybe😅and also because of class noise and unfriendly teachers😢
@@Allinone-sh6cj teachers are mostly friendly and travelling to college is tiring then you wouldn't get job cause job also needs travelling
15:25 Wah! Bhai kya baat kahi 😅
You are doing a great job!!
Your way of explaining is just awesome!!😍😍😍
THANK YOU SO MUCH SIR!!! never have I ever had any doubts left after watching your video🙌🙌🏻🙏🏻
An array contains “n” elements of numbers. The several elements of this array may contain
the same number “x”. Write a program to find the total number of elements which are equal to
“x” and also indicate the position of the first such element in the array.
hi can u send the sol.??
It is a Question of Linear Search
Binary search se krlo
Use linear search. Declare one variable to count the occurence of x. If array[i] == x, increment by 1. Make another array of same size as that of a given array and store the index in that array.
Since C is statically typed, use another variable and initialize it to 0. If array[i] == x, store the index number in newarray[counter] and increment the counter by 1 so that whenever another occurence of x happens, the code will automatically put it in the next memory location and give you all the indices where x is located
Bro give us some projects at this topic.
😂😂
Khud soch ke banalo
2D Array 👇👇👇
create two matrices and print the sum of these two matrices in new matrix
@@priyankushkashyap8268 m btata hu😂😂😂
@@rajusheoran4 batao
gajab samjhaya apne.dil balle balle hon gya
Thanks Bro... College mein muze kuch samajh nahi ata but jo tum batate ho wo direct dimaag mein jata hain.....
15:55 Acchi cheez
Thank you very much. You are a genius.
Bhai you are awesome aur bhai tumara video to UA-cam pe sab sa Bhari.....!!!!
thanks you harry sir, maaza aa gaya apka array ka video dekh kar 😊😊😊😍😍😍😁😁😁👍👍👍😘😘😘👌👌👌
#include
int main()
{
printf(" *wassup? IIT BHU students* ") ;
printf("aagye coding sikhne") ;
return 0;
}
hi Lokesh I am also the student of BCA in Varanasi
in which year u are i would like to know
can you share with me your contact no
kis clg se ho bhai@@AnkurGupta-xg3ig
@@AnkurGupta-xg3igBhai aap apna number do me bhi BCA 1st semester se hu Lucknow
Thank you harry Bhai you are doing great work... 🌟📚
Superb explanation of array 👏👏👏👌
Thank you harry bhai grateful to you❤❤
Thank you so much for your help ❤️
best coding channel to learn in youtube.
False on the entire web
Concept was more easy then I thought off, just because of you sir😎😎
very beautiful explanation as always, Thanks harry bhai.
learnt everything because of you . Love this video and ur effort brother.
Literally sir your explanation is smooth even I am eating KACHORI but knowledge is directly store in brain nice sir
you are too good as a tutor
thank u so much
thank you very much for making this video very helpful ❤❤❤❤❤❤❤❤❤❤❤❤❤❤💕💕💕💕💕💕💕💕💕💕😘😘😘😘
Nice way of teaching 👨💻
thank you for this wonderful content
your really a best teacher😊💚💚💜
Extraordinary explaination
Thanking sir ap bahot accha parate h 😅☺️☺️☺️☺️ sukriya
Concept revise krny k liye apka channel best hai
Array ke liye sahi example:
Library ke ek almari mein books,😊🙂
Sahi hai kya???
@@ss2facts65 han shayad sai ha pata nai
excellent explanation harry bhai
very helpful videos
i am fortunate enough to get a teacher like you
Thank-you 🙏 🙌 👏 👌 ❤️
Comment out karne ke liye pahle code ko select kare fir (ctrl+/)press kare ho jayega.
i have learnt so much from you.
Thankyou soo much sir 😊 kafi acha smjh aya
Bro bahut achhe smjhate ho aap✨✨ keep going..
Fantastic bhai!!
Thankyou so much sir Apne saach Mai humara C Ka dar bhaaga Diya I am so confused in C and humare college Mai bhi as such preparation nhi kaari due too lockdown or ab humare online exam ho rhe h..... But Apki videos Hume as a angel gift ki Tarah mil rhi h bikul worst condition Mai.... So thankyou so much sir for this help.... 🙏🏻😊
THATS aswm and my best class one array.
you cleared my lot of concepts .
thanks Bhayia
Nice bro maza aa giya array samaj kr❤️❤️❤️❤️❤️❤️
god bless ur hardwork bhaiya ,i am referring ur videos its very helpfull:)
Enter 9 student marks and it will be stored inside 3x3 matrix 😅
#include
int main() {
int marks[3][3];
for(int i=0;i
Harry sir...!!!
What an explanation 🙂❣️❣️❣️🙂
Thank You Sir 🙏🏻❤️🩹🇮🇳
Wow sir kya padhate ho aap ak number
Thanks Harry Bhaiya
Nice video bhai ! ❤👍😄
For loop 2 bar use karna zarori hai (18:15 )
bina 2 baar use kre we won't be able to print the matrix
Thank you bhaiya ❤️
10:13 contiguous is like adjacent
Let's start
Harry Sensei OP ❤❤
Samjha bhaiyaa ab pdf refer kar lunga syllabus points ke liye🤗🤗🤗🤗❤️
harry bhaiya ek problem mujhe baar baar ati ha... for example maine aaj apse arrays parh lia... ab kya main next lecture pe move krun ya array pr kuch practice krun.. or agar pratice krna ha to wo kahan se or kaise????
Ek proj banadiya at own thanks buddy
// Array is just the collection of same data types in C language **Data type should be same**
// Multiple data item with just single name
// for 2d array means matrices syntax is Data_type_name[row][columns] = {{elements},{elements}};
#include
int main()
{
int a[3][3]={{1,2,3},{1,1,1},{1,0,2}};
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
printf("%d\t",a[i][j]);
}
printf("
");
}
int d = a[0][0]*(a[1][1]*a[2][2] - a[1][2]*a[2][1])
- a[0][1]*(a[1][0]*a[2][2] - a[1][2]*a[2][0])
+ a[0][2]*(a[1][0]*a[2][1] - a[1][1]*a[2][0]);
printf("The determinent of above matices is %d
",d);
return 0;
}
thank you harry bhai for the fundamentals
Bhai ap se buhut seekha hai may ne keep it up
Plz explain the 3rd point of disadvantage with example.
Arrey meri samajh me nhi aaya dude please help
do make more videos of array and functions 😊
You are legend ❣️
keep going sir you are awesome it's helps me lots so thanks to make the c language series
Thank you so much bhaiya..... I got this concept in one shot
Great 👍👍👍👍 harry bhai
Sir ajj hi C programing ka exam diya....apse sikha tha sab aur bhot hi acha hua exam...thank you so much sir..u are great
great video
Thanks harry sir for explaining the conecpt in a very simple way.
Thanks guruji ❤
Super video! I applauded for ₹200.00 👏👏👏
Respect 👍
You are just awesome!!!😍🥰🥰🥰
Sir it is possible to increase array once you have declared it.
I confirm because I made a program an din my program, before the array is name[10] but after watching the last section of video I increase array and now this is name[11] and I not get any error and I am in Visual code.
Thank you harry bhai. One suggestion, it will be good if we get some exercise after every imp topic.
Thanks bhai....
Thank you so much sir for this video
Thanks
thanks sir i love you sir 👍👍🙏🙏🙏🙏🙏🙏🙏🙏
What is the technical difference between (0&1) Array integer. Plz explain
O denotes the first position in array ki pehle position par kaun hai. and 1 denotes second position
Sir Just awesome......😍😍
Understable courses
thank you.
Thank you 😊💕
Tqsm 🧡🧡😍😍
Harry bhai bhout mehenat karte hai sab students ko free mein paid course
sikhate hai,thankyou bhai ,sabloag bhai ko aacha wala support dikhao.
Thanks sir 😅❤🎉
Hello, Harry Bhai, thank you for this best tutorial❤. I have a doubt in this.
In VS code, you have first written the code with syntax 1 and then with syntax 2, so is it like syntax 1 and syntax 2 can be used alternatively or like we can use whichever we find it easier ? For 1D array
@@itsmeagain422 try this code... hope it solves ur problem
#include
int main()
{
int marks[5];
marks[0]=35;
marks[1]=67;
marks[2]=72;
marks[3]=22;
marks[4]=12;
for(int i=0;i50)
printf("Your marks are %d and congrats you have passed the exam!
",marks[i]);
else
printf("Your marks are %d and you are fail.
",marks[i]);
}
return 0;
}
YOU FORGET TO WRITE IT INSIDE FOR LOOP
@@itsmeagain422
@@itsmeagain422 I think you already figured it out
awesome video sir
First watch Mike dane tutorial 15 ,,link -( ua-cam.com/video/uR3_mxP3VeA/v-deo.html ) then watch this video ,,,watch from 9:30 ,watch at 1.25x speed
if u have time then u can watch before 9:30 ,,also after this video u can watch mike dane 2d arrays and nested loops video :)
DONE❤❤
Bhai. Txx. U for easy explain 👍👍
#1 viewer bro
Sir am watching ur playlist from 1st video
But in this u went little fast and mixed up the programs in vsc
Ye thoda smz nhi aaya , dusre video dekh rha tha utube pe pr aapke video jitna kahi comfortable nhi hu
Is video ko thoda aur elaborate kr k batao pls
Thank you harry bhai
Thankyou Sir..
Make a video on random number generator in c laguage
Love you 😘🥰🥰😘Harry Bhai😎😎😎
Nice video thanks bro