forward In C++11
2:35
3 ай бұрын
std visit in C++17
4:55
3 ай бұрын
Print Matrix In ZigZag Order
2:21
std hash in C++11
7:29
3 ай бұрын
Proxy Design Pattern In C++
4:29
3 ай бұрын
Wrapper Design Pattern In C++
6:31
variant In C++17
4:04
4 ай бұрын
std::any In C++17
6:08
4 ай бұрын
std::bind In C++11
4:31
4 ай бұрын
std::optional In C++17
5:53
4 ай бұрын
static assert In c and c++
3:27
4 ай бұрын
scoped lock in C++17
3:34
4 ай бұрын
Object Pool In C++
6:13
5 ай бұрын
Mutex VS Semaphore In C++
7:17
5 ай бұрын
ReThrow Exception In C++
5:10
5 ай бұрын
User Defined Exception In C++
6:19
Builtin Throw Exception In C++
6:23
Пікірлер
@pramodkumarkar6573
@pramodkumarkar6573 6 сағат бұрын
Excellent feature and very well explained by you !!!
@nitishparashar4056
@nitishparashar4056 13 сағат бұрын
@Rupesh How can we connect with you?
@gcm4312
@gcm4312 19 сағат бұрын
Even better: dont reuse names everywhere 😅
@delimisinyok
@delimisinyok 19 сағат бұрын
if you enabled embedding, I wanted to import bookmarks to my obsidian.
@anil84200308
@anil84200308 2 күн бұрын
Nothing understood from this. May be my mistake.
@prashantjannu2652
@prashantjannu2652 4 күн бұрын
What if there is same element repeated 2-3 times, then it will not work
@vinamrajha1571
@vinamrajha1571 4 күн бұрын
5:07:50 this->_x=_x; can also be used.
@vinamrajha1571
@vinamrajha1571 4 күн бұрын
should have given more info about tuples..
@solankikalpesh9764
@solankikalpesh9764 5 күн бұрын
as per tutorial sites if we declare label before goto whatever is inside the label will not executes until goto, but in my case it is executing whatever written inside the label if i declare it before goto why???
@CppNuts
@CppNuts 4 күн бұрын
Share the code
@MoradiyaMeet-xo7pm
@MoradiyaMeet-xo7pm 7 күн бұрын
If there is two number is missing so how can we solve that
@mrinalmadhav8119
@mrinalmadhav8119 8 күн бұрын
Please continue to upload videos
@sandipram5022
@sandipram5022 8 күн бұрын
this will happen if we don't give the solution what we are looking for, no comments no discussion even after 2 years. remembers people are coming here for the solution not to solve and report to the youtubers for that we have leetcode and many tools.
@cppdsageek
@cppdsageek 11 күн бұрын
Sir, could you please make a video on how to get a entry level, job as a C++ developer as a fresher? Based on your experience, what technologies should we learn? In colleges, almost everyone seems to be focused on web development, and finding information or a roadmap for that is easy on KZfaq. However, there's a lack of guidance on becoming a software developer with C++ in India. I tried seeking advice on Quora and Stack Overflow, but opinions vary. For the last three years, I have been learning and enhancing my skills in data structures and algorithms and making projects around (5 - 6), starting from my 11th standard. Due to some family issues, I had to take admission in a BCA program, and I am currently in my first year. I searched the on LinkedIn, and almost every job posting wants a person with 3 to 4 years of work experience. If you just reply to this comment, it will be very helpful for me. I am feeling very depressed right now. Some say to focus on embedded systems with C++, others suggest databases, and core systems development. It seems to be harder to become a C++ developer compared to a web developer in the Indian market. Could you please create a roadmap for this?
@manu--gj9is
@manu--gj9is 12 күн бұрын
doing binary right shift till the first setbit is at 1st position then '|' with '1' will work ??? will it result in same time complexity or MORE ??
@memeswallah5253
@memeswallah5253 13 күн бұрын
amazing
@KrishnayanNivaas
@KrishnayanNivaas 13 күн бұрын
voice quality in this video is not as usual like other videos. I find it difficult to understand some words you spoke in the video
@CppNuts
@CppNuts 13 күн бұрын
That time I did not have good set up.
@muralikrishnanayyappan6513
@muralikrishnanayyappan6513 13 күн бұрын
thank u my friend ! helps with the tortuous interviews these days !
@ashutoshraja94
@ashutoshraja94 14 күн бұрын
One doubt here how come you are passing char in but still not showing error while compilation ,is it considering ASCII code for that or what's happening here ?
@umndrk600
@umndrk600 14 күн бұрын
Thankyou so much for explain size_t.
@akshatchauhan0011
@akshatchauhan0011 14 күн бұрын
#python l=[1,2,3,4,4,5] for i in range(len(l),0,-1): print(i,end=' ')
@akshatchauhan0011
@akshatchauhan0011 14 күн бұрын
#python import array a=array.array('i',[1,2,3,4,5]) print(list(a[::-1]))
@drmostafamahammad
@drmostafamahammad 15 күн бұрын
(^_^)
@drmostafamahammad
@drmostafamahammad 16 күн бұрын
Thanks bro
@drmostafamahammad
@drmostafamahammad 16 күн бұрын
good work bro.. only one packing issue at 11:30.. there is an empty packing byte after the char.
@arjunkg9944
@arjunkg9944 17 күн бұрын
hi can i get this code
@modalavalasavinaykumar4208
@modalavalasavinaykumar4208 19 күн бұрын
So we can have more efficient and easy way Sort the array using Array.sort(name of the array) Print( max = array(n-1) , min = array(0) Sort will be nlogn- no need to worry about.
@xardinlume7345
@xardinlume7345 20 күн бұрын
I like the idea behind this data type but I'm kind of scared of how it functions in the background, like does it allocate memory dynamically, stores the typename, and then goes through reinterpret casts or something? I need to check an implem
@veereshranjan3519
@veereshranjan3519 20 күн бұрын
Hi , I think this pointer will come in below syntax tothe class's member function implicitly: Banana const *this But you said it will come like Const banana* this
@romk224
@romk224 21 күн бұрын
Why you did "typedef long int ull" ? In the code it looks like "unsigned long long"
@ayushgupta6847
@ayushgupta6847 21 күн бұрын
Amazing explanation ❤
@muhammadzakiahmad8069
@muhammadzakiahmad8069 22 күн бұрын
My python implementation: def is_Anagram(texta, textb): if len(texta) != len(textb): return False for char in texta: if texta.count(char) != textb.count(char): return False return True
@morty6456
@morty6456 22 күн бұрын
Sir please respond, which playlist should I follow your 27 videos which were posted 3 yrs back or this one?
@arsendavtyan6156
@arsendavtyan6156 23 күн бұрын
In case of using dynamic memory it will cause a problem even if it not,it's not a good thing to allocate memory and do not deleting it, you can delete it in the main or creating for it another function, but you should delete that memory, however the case of allocating and not deleting memory in the same function is not a good behavior. Whatever thank you for your lessons, now I am preparing for the interview and your lessons are helping me
@027KANDUKURIBALAVIKASH
@027KANDUKURIBALAVIKASH 24 күн бұрын
In 1st algo the TC is O(n * mlog(m))
@krmeghana2102
@krmeghana2102 24 күн бұрын
can someone explain why variable 'y' is still 0
@_strangelet__
@_strangelet__ 25 күн бұрын
This is really the most exhaustive playlist on stl I was able to find on yt. Appreciate the effort man! Keep up the good work.
@sirsneakybeaky
@sirsneakybeaky 26 күн бұрын
Vector.reserve is nice. I used it to set my object pool and function queue.
@pkpanda3047
@pkpanda3047 27 күн бұрын
Hi, I tried to run your code for add even/odd program using visual studio. But surprisingly using thread approach is taking more time than without thread approach. So, Can you share your comment on this? Regards, PK
@user-xw6ns6ih5f
@user-xw6ns6ih5f 27 күн бұрын
walking up by alexa is cool
@satyamkumaarr
@satyamkumaarr 27 күн бұрын
most under-rated one......!!
@Brusselsprouts2023
@Brusselsprouts2023 27 күн бұрын
best explanation for operator overloading.
@elitegamer8008
@elitegamer8008 27 күн бұрын
Nice these shorts really help a lot in revisions
@dakshverma5398
@dakshverma5398 28 күн бұрын
how can you use "was:" with Subject "You"??? YOU WERE IS correct
@omkarsarkar7916
@omkarsarkar7916 28 күн бұрын
When to use struct and when to use class in cpp ?
@niladripaul7032
@niladripaul7032 28 күн бұрын
So is it ok to say that extern C tells compiler to treat this part as a C program and compile it that way? If I do not add this header file and add the function under the extern C section?
@httle2012
@httle2012 29 күн бұрын
How to initialize 100 elements array?
@phantom7333
@phantom7333 Ай бұрын
Your video was really good; I just have to say something. The 'sizeof' operator returns a type of 'size_t' rather a 'long unsigned'. That's why in the printf function we should use the '%zu' format specifier rather than the '%lu' format specifier.
@harshlimbachiya7510
@harshlimbachiya7510 Ай бұрын
love u great explanation👌
@fndTenorio
@fndTenorio Ай бұрын
You could have said all this in 3 minutes.
@prathameshdanej4928
@prathameshdanej4928 Ай бұрын
Best of explanation with practical