>where I am able to hack into an existing code and manipulating it in order to make a program do whatever I like
Alright Alright Op, I'll help you out.
What you want to do is to be able to modify the function of an existing program.
Ideally you have the source code of the application available.
There is a whole culture built around "free software" or FOSS which stands for Free Open Source Software.
FOSS is superior to proprietarity software because it gives you, the user, the freedom to do what you like with the software. Including reviewing and editing the source code.
It also allows you to collaborate with other FOSS developers to improve the software so that all FOSS enthusiasts can benefit.
Richard Stallman is an important figure in free software and created the GPL. A special software license designed to protect users freedom.
This is the route I suggest you follow. If you're going to make programming a hobby do it in a way that gives back to the community in a collaborative way and don't spread non-free, proprietary garbage.
However I know what you're really asking is:
>how do I modify the function of programs WITHOUT having the source code available.
This too is possible but obvious more difficult.
In a nutshell a program exists as a set of instructions on your computer. In order to modify the function of the program you must modify these instructions.
Traditionally programs are compiled into machine code when stored on disk. This machine language is interpreted by your computer processor at runtime.
It is possible to use a tool called a "disassembler" to turn this machine language back into human readable "assembly code."
Now these instructions can be modified to cause the program to do what you desire.
Easier said than done though, because how the HELL do you know which of the millions if not billions of lines of assembly do the thing you want to change?
part 2 incoming: