Episode 8, how does programming work
Envisionly Envisionly
17 subscribers
5 views
2

 Published On Apr 1, 2024

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:   / paultdgeoghegan  
Envisionly's LinkedIn:   / envisionly  

Get in touch:
[email protected]

Our website:
https://envisionly.tech/

Follow the Envisiontech RSS feed:
https://envisionly.tech/RSS.xml

show more

Share/Embed