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...

Typing Lesson PART-2


Lesson-2
   


NOTE : You need to type the letter 'g' with left hand index finger. Same way you type 'h' with right hand index finger.


asdfgf ;lkjhj asdfgf ;lkjhj asdfgf ;lkjhj 
asdfgf ;lkjhj asdfgf ;lkjhj asdfgf ;lkjhj 
asdfgf ;lkjhj asdfgf ;lkjhj asdfgf ;lkjhj 
asdfgf ;lkjhj asdfgf ;lkjhj asdfgf ;lkjhj 
Type this lesson for 2 days. Untill you get perfection on this lesson.

Important  words for the above lesson:

all                  salad.         add           lak
gag                shall.          lash.          hash
glad               sal.             half.           glass
lags.              ass.             dhald.       ash
algal.             dad.           falls.          ask
fag.                shah.          hag.          jakal
kad.               shad.          jag.           alas
flag                slash.         falls
dash.             kalsa.        flags
    

Comments

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 ||