C++ programming basics

i am new to c++ programming when i was watching the batterycollector tutorials there were many terms i was not familiar with so are there any tutorials which tells about the basics of ueprogramming

The best UE programming course I’ve seen is this one: https://www.udemy.com/unrealcourse/
Or pick up a book: https://www.packtpub.com/game-development/learning-c-creating-games-ue4

All these terms you don’t know probably are from general coding knowlegde. You should search for a C++ basics tutorial (not in UE4) and if you don’t alredy know blueprints you should learn it first and then move to C++.

These are two resources that helped me a lot when I first started:

http://www.cplusplus.com/doc/tutorial/

As the above people mentioned, you should take some time to learn the fundamentals before you jump head first into something as complex as Unreal. Make a hello world program, some console based games (card games, maybe take a stab at an adventure game), and really solidify your understanding of loops, pointers, arrays, etc., in a simple and digestible environment.