Object Oriented Programming in C++ | Important Concept | Lecture 21.1

  Рет қаралды 985,762

Apna College

Apna College

Күн бұрын

Complete C++ Placement Course (Data Structures+Algorithm) : • C++ Full Course | C++...
Telegram: t.me/apnikaksh...
Instagram: / dhattarwalaman
Notes of this Lecture:drive.google.c...

Пікірлер: 715
@deejayVaibh
@deejayVaibh 3 жыл бұрын
Oops! where I landed
@shivangtiwari554
@shivangtiwari554 2 жыл бұрын
That is a really bad thing to say man....
@ZzZzZzZz.......
@ZzZzZzZz....... 2 жыл бұрын
I hadn't realised I'm not listening until I read this comment🤦
@Dr.Vichitra_101
@Dr.Vichitra_101 Жыл бұрын
@@ZzZzZzZz....... Jarvis lost its info 😵‍💫
@SomilSrivastava2406
@SomilSrivastava2406 Жыл бұрын
@@Dr.Vichitra_101🫨🍌
@virajmahadik7072
@virajmahadik7072 Жыл бұрын
​@@Dr.Vichitra_101chup re
@ayushkeshari8453
@ayushkeshari8453 3 жыл бұрын
When web development is coming?
@dineshgiri8499
@dineshgiri8499 3 жыл бұрын
@@YuvrajFusionX who is inform?
@dailynotes1221
@dailynotes1221 3 жыл бұрын
Friends I have created android app where you can get Free textbooks and preparation books like UPSC CSE, NEET-UG, IIT-JEE, IIT-JAM, GATE, NEET-PG. GO AND GRAB OPTION Link is play.google.com/store/apps/details?id=com.narenderravulakollu.library
@rohitgupta2223
@rohitgupta2223 3 жыл бұрын
Today
@sketchgaming16
@sketchgaming16 Ай бұрын
Thank you for the information. Thanks a lot, its helping me to know more about the programming of C++ and OPP or keep it up very knowledgeable video.
@yatinkhandelwal4220
@yatinkhandelwal4220 3 жыл бұрын
Bhaiya web development course ke chakkar me ye C++ ka course stop mat kardena please
@gurjeetsinghdhaliwal1702
@gurjeetsinghdhaliwal1702 3 жыл бұрын
Yes bhaiya
@himanshubhatt6240
@himanshubhatt6240 3 жыл бұрын
Can't thank you enough ❤️😊 Hope one i will be at the level where i can help to contribute in this ♥️🧡
@harshsoni528
@harshsoni528 3 жыл бұрын
a very good introductory video about oops.
@onlytargetupscexam4952
@onlytargetupscexam4952 3 жыл бұрын
You are great mam love you mam
@BANTIKUMAR-sm4sk
@BANTIKUMAR-sm4sk 3 жыл бұрын
Hiii
@BANTIKUMAR-sm4sk
@BANTIKUMAR-sm4sk 3 жыл бұрын
Hiii
@bukkylens
@bukkylens Жыл бұрын
Ma'am, is that right that actually constructor is not only called while creating object but the time of updating the values also? I am sharing the code #include using namespace std; class con { int a; public: con() { cout
@artyCrafty4564
@artyCrafty4564 Жыл бұрын
Bhai kya course bna diya yee...faduu ek dumm...jo muje 6 months m samjh ni aya wo 21 min ke video m aa gya
@cricketshorts6371
@cricketshorts6371 Жыл бұрын
I am not understand
@BILLIONAIREVIGOR
@BILLIONAIREVIGOR 4 ай бұрын
Apni English sai kr fr smjh ao gi😅
@sravyaganji3199
@sravyaganji3199 3 жыл бұрын
weekly 3 to 4 videos upload huwa tha but suddenly aap last me upload nahi karre please upload the videos we are following this!!! Aman please take care of this course.
@yashaswenimathur4795
@yashaswenimathur4795 Жыл бұрын
It's amazing🥳🧡🧡. I had one more request. There are many videos on Operating Systems, but none of them cover the technical part of it in depth. Can you please bring a dedicated video on OS as well which covers concepts in deep as interviewers ask the concepts in deep and not from just the basics. Thank you.
@rahuljabdee
@rahuljabdee 3 жыл бұрын
Bhaiya ZIO ke liye shot video bna kar guide kar dijiye please. Kuch samjh me nai aaraha hai kya karna hai, kaise karna hai. Kahan se practice kare syllabus ko...bahut saara doubt hai
@Newzome
@Newzome Жыл бұрын
there is too many shortcuts in lecture that's make its bounce....:
@muskanfatema7516
@muskanfatema7516 Жыл бұрын
I understood by shradha mam only.............
@vishvamsinhvaghela2611
@vishvamsinhvaghela2611 3 жыл бұрын
Plz upload videos on indian computing olymload as soon as possible sir
@tcsnqt-bc2jq
@tcsnqt-bc2jq 3 жыл бұрын
Ur voice is beautiful 🌸💫
@XD.Xd6
@XD.Xd6 3 жыл бұрын
Broo.. dont focus on her voice focus on her work...😁😁
@niladriroy1665
@niladriroy1665 3 жыл бұрын
Chal hat..... Tharki
@pratikjoshi9836
@pratikjoshi9836 3 жыл бұрын
Can anyone help me in this 3. You are given a list of 0's and l's: B[1], B[2],...,B[N]. A sublist of this list is any contiguous segment of elements i.e., A[i], A[i + 1], ..., A[j], for some i and j. A sublist is said to be Heavy, if the number of l's in it is at least as much as the number of O's in it. We want to partition the entire list into Heavy sublists. That is, a valid partition is a collection of Heavy sublists, such that each of the N elements is part of exactly one of the sublists. We want to find the number of ways of doing so. For example, suppose N was 3 and B = [1,0, 1]. Then all the sublists in this are Heavy, except for the sublist which contains only the second element (0]). The various valid partitions are as follows: (1,0, 1] ) (1,0), [1] ) ( [1), [0, 1] ) Since there are 3 ways to do this, the answer for this would be 3. Compute the number of ways of partitioning the given list into Heavy sublists for the following instances. (a) N = 8, B = [0, 1, 1, 0, 0, 1, 1, 1]i.e., B[1] = 0, B[1] = 1,..., B[8] = 1 (b) N = 9, B = 1, 1, 0, 0, 1, 0, 0, 1,1-i., B[1] = 1, B[1] = 1,...,B[9] = 1 (c) N = 9, B = 1, 0, 1,0, 1, 1, 0, 1,1-i.e., B[1] = 1, B[1] =0,..., B[9] = 1
@tejas7379
@tejas7379 3 жыл бұрын
Check in stackoverflow
@govindjangid6201
@govindjangid6201 3 жыл бұрын
Thanks ma'am .. very well explained 😊
@AbhishekKumar-td5zu
@AbhishekKumar-td5zu 3 жыл бұрын
Tqsm bhaiya ♥️♥️
@multigroupclub5454
@multigroupclub5454 2 жыл бұрын
Bhaiya bana dia nichara 😀
@prashantchakrawarti42
@prashantchakrawarti42 3 жыл бұрын
Thanku soo much 🙏🙏🙏🙏🙏
@21gamer50
@21gamer50 3 жыл бұрын
Apki awaz boht cute si he 🧡
@adityabhansinghrathore
@adityabhansinghrathore 3 жыл бұрын
Is class of C++ different from a structure of C or is it just "upgraded version" of structure?
@diveshkumar3823
@diveshkumar3823 3 жыл бұрын
Yes both are almost relatable but in class you will get more feature like friend , inheritance and many more functions
@differentdirection6294
@differentdirection6294 2 жыл бұрын
One more thing in class data members are by "default" private but in structure they use to be public !
@Rishabh_Dayal4444
@Rishabh_Dayal4444 3 жыл бұрын
Bhot bhot dhanywad aap sabhi team members ka nd especially aman bhaiya ji ka
@fariyafariya5064
@fariyafariya5064 Жыл бұрын
class object array of object constructor default + parameter + copy (constructor) operator overloading 8 topic
@Innovate_with_Anurag
@Innovate_with_Anurag Жыл бұрын
Is it possible to manipulate any Object Oriented Program with pointer?
@Arpitadubey1234
@Arpitadubey1234 10 ай бұрын
Thank u!! I do well after seeing this video...!!
@khiyatijain5829
@khiyatijain5829 3 жыл бұрын
Waiting for notes of this lecture bhiya🙂
@Jayant25
@Jayant25 3 жыл бұрын
Thank you aman bhaiya, this video was really helpful, may your startup be indians most successful startup
@cool_guy_Vaibhav
@cool_guy_Vaibhav 2 жыл бұрын
Explanation was super simple. Thanks for this video. I just OPPS concepts in 10 minutes.
@sumitdebnath2385
@sumitdebnath2385 3 жыл бұрын
NEXT LACTURE PLEASE
@mayank3436
@mayank3436 3 жыл бұрын
If it's object oriented programming then how it's OPPS it should be OPP?
@venis2208
@venis2208 3 жыл бұрын
Object oriented programming system
@qazinaziruddinzamiruddin2095
@qazinaziruddinzamiruddin2095 2 жыл бұрын
9:25 "firse likhna padega" i can feel u
@shubhxmzzz7153
@shubhxmzzz7153 Жыл бұрын
Kar rahe honge seekh rahe honge is constant at apna college 🤦🏻‍♂️😆
@ashu0272
@ashu0272 3 жыл бұрын
Team Apna college pls make course on C language .
@rohitgupta2223
@rohitgupta2223 3 жыл бұрын
No need that. C++ is Here.
@Karthik-kt24
@Karthik-kt24 3 жыл бұрын
Yes I feel learning any one of C++ or C or Java is fine
@UshaRani-kk4uw
@UshaRani-kk4uw 3 жыл бұрын
@Ashu 02 ..follow Jenny's lecturers for data structures in C
@shrutibansal-5262
@shrutibansal-5262 3 жыл бұрын
Bhiya plz plz DBMS or operating system b krvado 🙏🙏
@dailynotes1221
@dailynotes1221 3 жыл бұрын
Friends I have created android app where you can get Free textbooks and preparation books like UPSC CSE, NEET-UG, IIT-JEE, IIT-JAM, GATE, NEET-PG. GO AND GRAB OPTION Link is play.google.com/store/apps/details?id=com.narenderravulakollu.library
@PujaKumari-nt5dq
@PujaKumari-nt5dq 3 жыл бұрын
Please INCLUDE ALL TOPICS OF OOPS ( ENCAPDULATION ABSTRACTION POLYMORPHISM AND ALL WITH CODE AND REAL LIFE EXAMPLE FROM Interview prospective)
@ApnaCollegeOfficial
@ApnaCollegeOfficial 3 жыл бұрын
Don't worry, this course will have everything.
@darshantrivedi5390
@darshantrivedi5390 3 жыл бұрын
@@ApnaCollegeOfficial Thanks 🔥
@ChandanKumar-rv5xw
@ChandanKumar-rv5xw 3 жыл бұрын
@@ApnaCollegeOfficial bhaiya class 12 English k notes nahi khul rahe h PLZZ bhaiya upload kar do
@ChandanKumar-rv5xw
@ChandanKumar-rv5xw 3 жыл бұрын
@@ApnaCollegeOfficial sab m error show kar raha h
@dahisamosa9250
@dahisamosa9250 2 жыл бұрын
perfect explaination>>>
@shivmalhotra8740
@shivmalhotra8740 3 жыл бұрын
BEST TEACHER IN THE WORLD 🌍❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️
@DeviDevi-yr2sv
@DeviDevi-yr2sv 2 жыл бұрын
Name kya h teacher ka?
@anuragtyagi1111
@anuragtyagi1111 3 жыл бұрын
When God come to help poor students ❤️🙏🏼
@BirendraKumar-sk7ps
@BirendraKumar-sk7ps 3 жыл бұрын
Hey bhaiya by what time u will complete the course
@sushantkumar9883
@sushantkumar9883 4 ай бұрын
this video is very useful if you know this topic toughly 🤣
@PS-LEADER-AMAN-ff
@PS-LEADER-AMAN-ff Ай бұрын
20:10 how can we compare c and b
@mushfiqazam5084
@mushfiqazam5084 Жыл бұрын
intro beat and lecture
@balrajdhawan566
@balrajdhawan566 3 жыл бұрын
Being someone who usually buy paid courses. I bet this is the most valued free course on C++. Content is Awesome.
@raghavchaddha4561
@raghavchaddha4561 3 жыл бұрын
Guys, have you donated for Ram Mandir ?? Jo Log Date Puchhte the, Aaj 500 years baad Date aai toh donate karne se Pichhe na Haate Jai Shree Ram.
@purubhargava8096
@purubhargava8096 3 жыл бұрын
Kardiya bahi ☺️
@eduhub1095
@eduhub1095 3 жыл бұрын
Next video?
@manastelavane9119
@manastelavane9119 3 жыл бұрын
Is there any telegram channel for doubts discussion. If yes, plz send the link
@MoshanAli-lz1vh
@MoshanAli-lz1vh 6 ай бұрын
Mam alag alag kr k prhya kro mix ho jta h Sara
@AdityaTaylor-t9k
@AdityaTaylor-t9k 7 ай бұрын
dhang se samjhao yarr.New concepts ko pahele introduce toh kero
@AashiqueHussain_
@AashiqueHussain_ 2 жыл бұрын
thanks
@surajwankhade2082
@surajwankhade2082 3 жыл бұрын
What an explanation mam ❗ Excellent 😊💯💯
@ayesharehmatayesharehmat8519
@ayesharehmatayesharehmat8519 5 ай бұрын
Ye apny koyu kiya string name ko public keyword sey nikal kar Pir osky ilye set get functions create kiye apny
@premiumstudy5481
@premiumstudy5481 Жыл бұрын
Abstraction and Encaplusation Cover nhi hua OOPS main..????
@suhaspatil8682
@suhaspatil8682 3 жыл бұрын
didi samaj toh aa gaya par 1 hi video me itne sare topics nahi batane chahiye the aur same code me.
@sayjamali4079
@sayjamali4079 4 ай бұрын
Yaar good hogya
@aswingeed8632
@aswingeed8632 Жыл бұрын
Yrr tum samajhte sahi ho yrr
@anwho5149
@anwho5149 3 жыл бұрын
you are telling that in shallow copy constructer address is not same and in deep copy constructor address is also same but in Notes this is opposite I think...... "Shallow Copy: The object and its copy, point to the same memory address. If you make a change in its copy it gets changed in the main copy as well and vice versa. Deep Copy: The object and its copy, point to different addresses in the memory. If you make a change in its copy it will not get changed in the main copy and vice versa." Please check and tell me it is right or wrong.
@sirbap
@sirbap 3 жыл бұрын
Kuch samajh nahi aaya. Mam ne real names bataya hi nahi opps me kya kya hota hai even inherit ka nam bhi nahi liya. Ye video beginners ke liye nahi hai. But Aman bhai you are really awesome. 1 sal pahle jo bhaiya padha rahe the unka video pura samjh aata tha.
@sandeepmohanty4816
@sandeepmohanty4816 3 жыл бұрын
Web development ke uppar video banao
@utkarshganesh1225
@utkarshganesh1225 3 жыл бұрын
Aaj aa jayegi
@sandeepmohanty4816
@sandeepmohanty4816 3 жыл бұрын
@@utkarshganesh1225 am waiting
@utkarshganesh1225
@utkarshganesh1225 3 жыл бұрын
@@sandeepmohanty4816 hn bhai raat tk aa jayega👍
@dhananjayrai8450
@dhananjayrai8450 3 жыл бұрын
Maja ayega
@sandeepmohanty4816
@sandeepmohanty4816 3 жыл бұрын
@@dhananjayrai8450 han
@aashishreddy9033
@aashishreddy9033 3 жыл бұрын
bro make a video on money, like paying taxes and etc
@hansika9136
@hansika9136 3 жыл бұрын
why we have to take function to print,if we can print without using function as well?
@kimjongun9681
@kimjongun9681 3 ай бұрын
Ye revision ke liye sahi ha ...beginner ke liye nahi
@sakshi6252
@sakshi6252 2 жыл бұрын
Why output is coming as error in operator overloading..ie, bool is only gender function.
@prajjavalsrivastsva7037
@prajjavalsrivastsva7037 3 жыл бұрын
Thanks!!!!!
@tanishqsharma4267
@tanishqsharma4267 3 жыл бұрын
Please upload next lecture
@prodevmahi4901
@prodevmahi4901 3 жыл бұрын
Ha re bahut cute aawaz Hai, bas aawaz se hi puppy Dene ka Mann karta ha usko Muaahhh!!!!
@rohitsharma386
@rohitsharma386 3 жыл бұрын
notes kaha ha mam?
@21monks29
@21monks29 3 жыл бұрын
shallow copy Kaise banate hai.
@varunguptag
@varunguptag 3 жыл бұрын
when will linklist topic will covered ?
@varunguptag
@varunguptag 3 жыл бұрын
plz reply , clg m linklist kara rahe h c lang s aur samaz kuch aa nahi rha
@yashchaudhary1791
@yashchaudhary1791 Жыл бұрын
You make things complex , eg in this video you are not going by step by step. Mtlb ki apne yha constructor bnaya phele getname function le liya fhir print info leliya explain krra ni kyu liya.
@satendersharma7560
@satendersharma7560 3 жыл бұрын
why haven't you started WEB DEVELOPMENT classes till yet ??
@hammadfarooqi16
@hammadfarooqi16 Жыл бұрын
Its very similar to structures...
@shlokkumar3369
@shlokkumar3369 2 жыл бұрын
Thanks❤🙏. I'll have to join your class. Pls tell me the procedure
@rishiltrivedi3080
@rishiltrivedi3080 3 жыл бұрын
i am feeling flexible now
@frankieleo1152
@frankieleo1152 Жыл бұрын
it would have been so great 🥰
@sahillodha6084
@sahillodha6084 2 жыл бұрын
'a' was not declared in this scope in copy constructor thought the program is running why is this error poping up??
@shivamdubey3798
@shivamdubey3798 3 жыл бұрын
why we use gender showing o ,1 i am not understand please expalin
@Ashishkumar-bs4uw
@Ashishkumar-bs4uw Жыл бұрын
Kisi candition ko five time check karna hai to kiska pryog karege If ka ya switch ka ?
@aroranikunj277
@aroranikunj277 Жыл бұрын
According to me if the input is a fixed digit then use switch And if we don't know exactly and we know the range then use if else...🤔
@Ashishkumar-bs4uw
@Ashishkumar-bs4uw Жыл бұрын
@@aroranikunj277 if se ho sakta hai par five time output show hoga bro agar last five me == mila to
@ninjawarrior1062
@ninjawarrior1062 3 жыл бұрын
M1 review from your side for college plzzzzz Bhaiya 🙏🙏🙏
@yashrawat9409
@yashrawat9409 3 жыл бұрын
Look at the Channel Banner, WebD course 1st vid on 12th Dec 7 Pm
@dailynotes1221
@dailynotes1221 3 жыл бұрын
Friends I have created android app where you can get Free textbooks and preparation books like UPSC CSE, NEET-UG, IIT-JEE, IIT-JAM, GATE, NEET-PG. GO AND GRAB OPTION Link is play.google.com/store/apps/details?id=com.narenderravulakollu.library
@harshitrathi3077
@harshitrathi3077 3 жыл бұрын
What about C++ DSA NEXT VIDEOS ? THEY HAVE COMPLETELY STOPPED IT
@rahul-java-dev
@rahul-java-dev 2 жыл бұрын
Thanks ma'am...
@grin09
@grin09 2 жыл бұрын
How to fixed file saving error in dev c++
@pvfevr7000
@pvfevr7000 3 жыл бұрын
Thanks 🎉 bhaiya
@adityaanand9234
@adityaanand9234 3 жыл бұрын
bhaiya plz IOI ke pyq's pe video bna dijeye exams 19 dec ko hi hai
@faizanahmed9304
@faizanahmed9304 3 жыл бұрын
Didi,do we have to assign constructor for each class object?
@pankajporwal686
@pankajporwal686 3 жыл бұрын
constructor is assinged only once...you just have to pass parameters while creating object
@bhavikpahwa4557
@bhavikpahwa4557 3 жыл бұрын
Bhaiya kab hoga premier Web dev course
@bhavikpahwa4557
@bhavikpahwa4557 3 жыл бұрын
??
@tejas7379
@tejas7379 3 жыл бұрын
@@bhavikpahwa4557 Today ig
@bhavikpahwa4557
@bhavikpahwa4557 3 жыл бұрын
Ha
@bhavikpahwa4557
@bhavikpahwa4557 3 жыл бұрын
Too op
@akelawonder8267
@akelawonder8267 Жыл бұрын
9:23 I feel that pain
@ummedchoudhary4355
@ummedchoudhary4355 3 жыл бұрын
Itna fast kyu chal rhe ho,,,,, Sab kuch mix hojata he
@devanshverma3045
@devanshverma3045 3 жыл бұрын
pls upload notes
@rajkumarchavan8457
@rajkumarchavan8457 2 жыл бұрын
please include timestamps in every video
@ABHISHEKSINGH-qh5yo
@ABHISHEKSINGH-qh5yo 3 жыл бұрын
Please do a video on zoi olympiad
@PriyanshuSingh-xz3yp
@PriyanshuSingh-xz3yp Жыл бұрын
Lecture 21.2 is missing
@aryaakash5815
@aryaakash5815 3 жыл бұрын
WhiteHat Jr ads: We have the best coding teachers Aman Sir: Hold my laptop
@cj8848
@cj8848 3 жыл бұрын
Hold My Neha*
@ikmusicpoint5926
@ikmusicpoint5926 3 жыл бұрын
Hehe
@rajkumar2001mondal
@rajkumar2001mondal 3 жыл бұрын
@@cj8848 😂😂😂🤣
@arnikchakraborty1553
@arnikchakraborty1553 3 жыл бұрын
@@cj8848 aur rahul aur uski girlfriends
@_rahulsain
@_rahulsain 3 жыл бұрын
if you have any doubts ,join this dedicated server, we will try to resolve your doubts in a day or so -> discord.gg/QHXbXdHxDA
@rajkumarchavan8457
@rajkumarchavan8457 2 жыл бұрын
Thanks
@bhaskarsingh6750
@bhaskarsingh6750 Жыл бұрын
Why do you speak yaar again again ? It's really awkward and irritating.
@aayushbajaj505
@aayushbajaj505 2 жыл бұрын
definitely not for beginners this is a revision course please do not use it for learning dsa for the first time
@guddujmi4694
@guddujmi4694 2 жыл бұрын
Why
@rutvikrana512
@rutvikrana512 3 жыл бұрын
Lots of things in single video. 💕 If you are new to OOP. Then don’t try to understand why we want to do it ? Just follow course. OOP is used for reusability. You will more understand it by making your own projects. Like making physics engine in python, make some games in Unity or unreal, make apps with flutter or React. Everything is dominated by OOP. Happy learning 😊
@zaeemAtif
@zaeemAtif 3 жыл бұрын
thanks for guiding, will be happy to hear more informational stuff from you..!!
@sujataparvatiacharya8958
@sujataparvatiacharya8958 3 жыл бұрын
Oh that's great🤩
@Saurabh-gg9lv
@Saurabh-gg9lv 3 жыл бұрын
agar tum fir bhi smzna chahte ho to cwh ki videos dekhlo😊
@pragatijha2071
@pragatijha2071 Жыл бұрын
What if we don't know c++ language..only we have knowledge about c
@MYSTICSTUDIO3.0
@MYSTICSTUDIO3.0 4 ай бұрын
Thanks bud , means a lot.
@yogeshsanap8453
@yogeshsanap8453 3 жыл бұрын
we want notes of previous lectures? BTW we reached topic no.29(Update :- Notes are available of previous lectures)
@Pankajsingh-ej8qk
@Pankajsingh-ej8qk 3 жыл бұрын
notes se ghnta kuch nhi sikhega
@_rahulsain
@_rahulsain 3 жыл бұрын
You could copy the the code from here-> github.com/rahulsain/CPP-DSA
@priyanshutandel3159
@priyanshutandel3159 3 жыл бұрын
ye c++ ka course khatam ho gaya ya aur videos aayege
@yogeshsanap8453
@yogeshsanap8453 3 жыл бұрын
@@priyanshutandel3159 we are only 2/4 done so far
@VipeR-gk8yt
@VipeR-gk8yt 2 жыл бұрын
@Yogesh Sanap Where is the course schedule or index available so that i can know how much course is completed.
@manasraj2532
@manasraj2532 7 ай бұрын
ab gender ke liye long long lena padega 😂😂😂
Inheritance in OOP's | C++ Placement Course | Lecture 21.3
8:45
Apna College
Рет қаралды 479 М.
C++ Object Oriented Programming | OOPs Introduction
11:58
Learn Coding
Рет қаралды 337 М.
escape in roblox in real life
00:13
Kan Andrey
Рет қаралды 90 МЛН
Watch this before you start Coding! | 10 Tips for Coders
22:31
Apna College
Рет қаралды 2,1 МЛН
Object Oriented Programming (OOP) in C++ Course
1:30:26
freeCodeCamp.org
Рет қаралды 2,5 МЛН
*Honest* Advice for Aspiring Software Engineers | by Shradha Ma'am
16:13
Coding Was HARD Until I Learned These 5 Things...
8:34
Elsa Scola
Рет қаралды 484 М.
Which Coding Language should you start with in 2024? For Beginners
10:19
Apna College
Рет қаралды 1,4 МЛН
Object-oriented Programming in 7 minutes | Mosh
7:34
Programming with Mosh
Рет қаралды 4 МЛН
C++ Tutorial for Beginners - Learn C++ in 1 Hour
1:22:56
Programming with Mosh
Рет қаралды 4,1 МЛН
POINTERS in C++
16:59
The Cherno
Рет қаралды 1 МЛН