Created
January 22, 2024 18:04
-
-
Save iam-vipul/7694a53747f2fa58019be24045604e0d to your computer and use it in GitHub Desktop.
c-program
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # compile the code to generate the binary | |
| gcc -o myprogram myprogram.c | |
| # run the progrma | |
| ./myprogram | |
| # inspect the binary | |
| objdump -d myprogram | |
| # try to read through the machine code instructions | |
| # trace the system calls of our program | |
| strace ./myprogram | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment