C++ || STL || standard template libraries

Image
                                       C++ STL  1.      Pair :  Syntax :      pair <int,char> p1;     it creates a pair {2,'c'} like this.           pair <int,int> p2;     it creates a pair {2,3} like this .  Basic Code :  #include <bits/stdc++.h> using namespace std; int main() {     // cout<<"hello world\n";     pair <int,int> p1 = {1,2};     cout<<p1.first<< " "<< p1.second<<endl;          pair <int, pair<int ,char>> p2 = {1,{2,'c'}};     cout<<p2.first<<" "<<p2.second.first<<" "<<p2.second.second<<endl;          pair <int,int> arr[] = {{2,3},{4,5},{6,7}};     cout...

           ðŸŒžVocabulary🌞


1. WANE (VERB): (क्षीण होना):  decrease

Synonyms: decline, diminish

Antonyms: increase

Example Sentence:

About half-past eight the combat began to wane.


2. DEPLOY (VERB): (तैनात करना):  position

Synonyms: station, post

Antonyms: concentrate

Example Sentence:

Forces were deployed at strategic locations.


3. DISASTROUS (ADJECTIVE): (विनाशकारी):  bcatastrophic

Synonyms: calamitous, cataclysmic

Antonyms: fortunate

Example Sentence:

A disastrous fire swept through the museum.


4. OVERLOOK (VERB): (अनदेखी करना):  disregard

Synonyms: neglect, ignore

Antonyms: punish

Example Sentence:

She was more than ready to overlook his faults.


5. HUMANITARIAN (ADJECTIVE): (मानवतावादी):  compassionate

Synonyms: humane, unselfish

Antonyms: selfish

Example Sentence:

She has been recognized as a great humanitarian for her efforts to end hunger.


6. TORMENT (NOUN): (व्यथा):  agony

Synonyms: suffering, torture

Antonyms: pleasure

Example Sentence:

Their deaths have left both families in torment.


7. RELENTLESS (ADJECTIVE): (सतत):  persistent

Synonyms: continuing, constant

Antonyms: short-lived

Example Sentence:

The heat of the desert is relentless.


8. ALLY (NOUN): (सहयोगी):  associate

Synonyms: colleague, friend

Antonyms: enemy

Example Sentence:

He was forced to dismiss his closest ally.


9. PROFUSE (ADJECTIVE): (प्रचुर):  copious

Synonyms: prolific abundant

Antonyms: scarce

Example Sentence:

I offered my profuse apologies.


10. FIDGETY (ADJECTIVE): (बेचैन):  restless

Synonyms: restive, on edge

Antonyms: calm

Example Sentence:

I get nervous and fidgety at the dentist.

Comments

Post a Comment

Popular posts from this blog

1050. Actors and Directors Who Cooperated At Least Three Times || Leetcode sql solution || Simple and Easy Approach || ✅✅✅✅💯💯💯🔥🔥🔥🔥

Power of Millets || Happy And Healthy Life

c program to clear nth bit of the number || Bitwise Operators || Problem Solving ||