Home
> How Can I See The Code Of An Application?
Question
How can I see the code of an application?
Reply
Similar articles
- Where can I get the Rufus application for Ubuntu? How can I install it?
- Can I track someone using the Find My iPhone application without them noticing?
- How can you view the source code of an iPhone application?
- How can I install an APK application on an LG Smart TV?
- How to unlock a phone that is locked on the network without having to buy an unlock code?
Yes you can, although if you have your own function library, it will be more difficult.
If you use standards or .dll, it's easier
I forgot. You must master Assembler, as if it were your native language
Yes, you can.
In the case of some that are interpreted, by reading the file containing the code. For example many pages contain JavaScript snippets (although it can also be a separate file).
In compiled languages such as C++ and even Java you simply cannot, as the code is converted in the case of pure compilers to instructions that are directly executed by the operating system, or to pseudocode that is executed by a virtual machine.
There are so-called decompilers that can give you an idea, but they are not completely reliable