How Do I get Started in C++?

I know C++, I took the udemy course, it is known as Learn Complete C++ Programming Tutorial with examples. Ok so before taking that course I taught that I would be able to get in ue4 easily. Well thats not obviously the case. So how do i get started. I looked at all the tutorials on ue4 doc page but I still am clueless. Please Help

Google is your friend. Use it before asking here please.

If that is not enough I recommend a course on Udemy that is pretty good.

Most important thing you need to understand that there is no framework difference between blueprint and C++, Blueprint is a class, Functions are node and you override parent function is same as using events. So if you used blueprint you already know how to use C++ as long as you know basics of C++. I recommand to check my video which shows that ties between blueprint and C++ and how they work thogether:

If you don't know C++ at all you might try some non-UE4 tutorials on C++, just remeber that UE4 use different base APIs (standard once are still usable in UE4 but it's not recommanded to use them) so functions will be diffrent in those tutorials, but that way you should at least know what to search. You can find any function list in API refrence

use UE4 docs search to serch API refrence there API tab in results. Most nodes you see in bluepritns are just C++ bindings and oyu can find them and use in C++, just search node name without spaces in name

Thank you man. You just helped me out alot