Array Programs with clear explanation

preview_player
Показать описание
Follow my Whatsapp channel for content updates, questions, contests and many more...

1.Ttraverse 8:00
4.Rversing 21:53
8.Repeated element and count 1:00:40
9.Swap any 2 elements in an array using pointer 1:09:57
10.Swaping every pair of adjacent elements in an array 1:16:09
11.Rotate array elements k times 1:20:15

Pointer programs with clear explanation

Technical lectures by Shravan Kumar Manthri.
Watch Technical C programming

Watch Data Warehousing & Data Mining

Watch Design & Analysis of Algorithms

Watch Formal Languages & Automata theory

Like us on fb: CSE GURUS

This video explains the concept of Arrays and typical programming.
This video explains 5 Mcq's with explanation related to Concepts in C . #ShravankumarManthri#CSEGURUS #ShravankumarManthri#CSEGURUS
Рекомендации по теме
Комментарии
Автор

the most precise video on youtube for array practice, love your channel

tuba
Автор

The greatest c tutorial ....I have never seen in the entire YouTube history! You deserve Oscar for your channel!!!

saitejaameda
Автор

While searching I found this gem 💎 thanks a lot man 🙏🙏

chikkamsuresh
Автор

wow amazing video sir made all videos like this means in one video plzz cover all possible concept related questions and theory part like in this video, i highly recommend guys plzz do must watch till the end.great sir.thanks

zannylover
Автор

tommorow is my interview and I'm glad that I've watched it

ayushmansrivastav
Автор

Wonderful video. Worth watching two hours to understand array programs. Thank you

IrfaanMeera
Автор

Please upload for character array and string too, these videos are too helpful . Thank you so much

gauravmishra
Автор

Good classes
Easy to understand
Thanks a lot

mohammedhassan
Автор

Very Helpful, , Very Good Explanation 👍

snigdharoy
Автор

traverse 8:00
insertion 10:52
deletion 17:21
reversing 21:53
decimal to binery conversion 31:49
printing even numbers and odd numbers seperately 40:42
second largest element in array 48:00
repeated element and count 1:00:40
swap any 2 elements in an array using pointer 1:09:57
swaping every pair of adjacent elements in an array 1:16:09
rotate array elements k times 1:20:15
sum of elements in an array 1:30:14

althafav
Автор

thankyou for this wonderful tutorial❤❤🎉🎉;..love from tamilnadu

___its___my___life___journey__
Автор

Very Good Explanation, Sir please make this type of Video on Linked List.

rohitkumar-xnvh
Автор

thank you so much sir its, help me alot, and i have learn new things,

dreamutheit
Автор

Srinivas sir explanation super thank you sir

vijayareddy
Автор

Sir, Can you please give this lecture pdf or doc .It will be very beneficial for revision.

anujkumar-ugzg
Автор

@31:21, for reversing just the second half, 'j' too should be changed to (n-1).

samarmirza
Автор

please sir keep posting these problem set solution.... It's hugely helpful for the beginners.

gopendumanna
Автор

This video is just awesome sir. Plz upload questions like this of other data structures sir . ☺️

saniyamansuri
Автор

Sir tqq soo much i got this gem over thousands 🙏🙏

venkatvenka
Автор

For finding second largest element can we do in this way ?

Int n, a[50];
cin>>n;
For (int i=0;i<n;i++)
{
cin>>a[i];
}
For (int i=0;i<n;i++)
{
if(a[i]>a[i+1])
{
Int temp =a[i];
a[i] = a[i+1];
a[i+1] = temp;
}
}
cout<<a[n-2];
}
Which will run faster ?

saniyamansuri