In this episode Paul takes a look at how programs actually run on a computer along with how programming languages actually work. As promised here is the programming language comparison:
**********
In python:
answer = 1+2
In C this is:
int answer = 1 + 2;
In asm this is:
section .data
answer db 0
section .text
global _start
_start:
mov eax, 1
add eax, 2
mov [answer], eax
; Exit the program
mov eax, 1
xor ebx, ebx
int 0x80
**********
Follow us:
Paul's LinkedIn: https://www.linkedin.com/in/paultdgeoghegan/
Envisionly's LinkedIn: https://www.linkedin.com/company/envisionly/
Get in touch:
contact@envisionly.tech
Our website:
https://envisionly.tech/
Follow the Envisiontech RSS feed:
https://envisionly.tech/RSS.xml