Recent posts

Chapter 8. Exceptional Control Flow (PART 2)

15 minute read

Computer Systems : A Programmer’s Perspective 8.1장부터 8.4장까지는 하드웨어와 소프트웨어가 협력해서 low-level exception을 제공하는 방식을 살펴보았다. 또한 운영체제가 context switch를 통해 exceptional c...

Chapter 8. Exceptional Control Flow

17 minute read

Computer Systems : A Programmer’s Perspective 프로세서에 처음 전원을 공급할 때부터 전원을 끌 때까지, PC(program counter)는 일련의 값들을 따라 바뀌고, 각 값들은 수행할 instruction 각각의 주소가 된다. 이러한 con...

Chapter 15. Writing Large Programs (PART 1)

less than 1 minute read

K.N.KING C PROGRAMMING A Modern Approach 15.1 Source Files 지금까지는 하나의 프로그램은 하나의 file에만 작성했는데, 한 프로그램은 여러 source file들로 나눠질 수 있다. Source file이란 관습적으로 .c 확장자를 가...