Vectors in C++ STL |Part 1 | STL for Beginners| C++ Tutorials for Beginners #lec50

preview_player
Показать описание
In this lecture we will learn :
- What is STL(Standard Template Library)?
- What are Vectors in C++?
- Declaration of Vectors
- Initialization of Vectors

*********************************************

Connect & Contact Me:

*******************************************

More Playlists:

#vectors #coding #programmingtutorial #stl #jennyslectures
Рекомендации по теме
Комментарии
Автор

Rn preparing for UPSC and had watched your videos way back in 2019 and suddenly I remembered your videos while discussing something with my roommates, and typed C language ma’am and YT popped up your playlist. It’s great to see you still teaching students here. Keep growing and glowing. Thanks

_Longwinded
Автор

No no.... Mam u r awesome 💯⚡.... U r the real expression queen mam.... I didnt saw the c++ bcoz of u mam🥹🥹🥹

ajayalexv
Автор

I was waiting for this topic so many days, thank you so much mam, I am very happy and your teaching is excellent. 😊

prajwalgowda
Автор

Thank you so much mam. I was complete nooby in data structure and by following your lectures I was able to score O grade... Your teaching is very concise and effective mam . Thank you again

randomboy
Автор

Mam please 🙏 🥺 continue the series, eagerly waiting for your continuation...

paavaneep
Автор

Mam, you are the lioness, in the Den of CS/IT Teaching

sanjaymahli
Автор

Assignment solution:-

#include <iostream>
#include <vector>
using namespace std;

int main()
{
vector <bool> values(10);
for(int i = 0; i < values.size(); i++)
{
values[i] = false;
}

for(bool value : values)
{
cout << value << " ";
}

}

or

#include <iostream>
#include <vector>
using namespace std;

int main()
{
vector <bool> values(10, false);
for(int i = 0; i < values.size(); i++)
{
cout << values[i] << " ";
}

}

PARCK
Автор

maam jldi ye series complete krdo pls maam

anuj_youtuber
Автор

Madam your videos is very helpful for students like us. Please share the notes of thses lectures and continue this series for other languages please.

roohulhasnain
Автор

Asalam Alekum
i am from Karachi Pakistan your style of teaching is very impressive and helpful for both the beginners and the advanced users. Please keep on doing so . I have a humble request if you come to Pakistan stay with me at my home and with my family instead of reserving room in a hotel . Please if you see the comments reply and mention in your videos that Pakistani people are so loving nation same as Indians.

InfoTVOfficial
Автор

#include<iostream>
#include<vector>
using namespace std;
int main(){
vector <bool> vec(10, false);
for(int i=0;i<vec.size();i++){
cout<<vec[i]<<endl;
}
}

richards
Автор

Madam can you start lecture about python related projects, tips, tricks, database Oracle, MySQL, MongoDb, numpy pandas.😊

RamReddy-yj
Автор

Let me know in the comment section is just a formality speaking mam.

abhishekdubey
Автор

Mam please complete it as fast as you can
My mid term examis right in the corner😢

Hb_square_gaming
Автор

Good evening mam
Kindly put same of the video about chemical department gate exam preparation I am watch your video in detail explained in video and this video Many help in my exam.

shankarnarayanan
Автор

Mam please make lecture about SAP for logistics and supply chain.please it will helps a lot of people.

praveenkumarjayaveeran
Автор

Mam is there any videos left in python course plz give reply mam

sathwikchinta
Автор

Mam you are very beautiful ❤️ your teaching too

jvalli
Автор

Mam I am currently in 1st year CSE, I am doing my gate preperation along with coding in c and cpp... But these are going to be tough as semester study have to done with this.... Can you suggest how I can manage this... Please

riddhitadas
Автор

At 23:10 shouldn't the capacity double after using the pushback function? As the capacity was 4 at numbers.push_back(3). So shouldn't it be 8 at numbers.push_back(34)?

harisshibli
welcome to shbcf.ru