Static Memory and Static Lifetimes in the C Programming Language

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

This is the best presentation I have found on this subject anywhere. I finally understand how this actually works. Fantastic! Thank you.

RussTanner
Автор

Nice to have a instructor, who goes deeper in the C language, but still in an understandable way.

grimvian
Автор

I am watching your videos for my projects in 42 school (Brazil). You have an excellent way to explain the concepts. Thank you !

MrTaandreo
Автор

Great explanation, surprised the views are so low. Glad I found it though.

radman
Автор

Mac M1 is a little different. Here are two runs of your program.

MAC:Tue Sep 06:21:20:~> ./static
&global = 0x1042fc000
&static_global = 0x1042fc002
&static_local = 0x1042fc001
&local = 0x16bb0b60f
MAC:Tue Sep 06:21:21:~> ./static
&global = 0x102670000
&static_global = 0x102670002
&static_local = 0x102670001
&local = 0x16d79760f

johnmorrison