C Programming

The most popular Operating Systems right now are Microsoft Windows, Mac OS X, and /Linux. Each is written in C. Why? Because Operating Systems run directly on top of the hardware. There is no lower layer to mediate their requests. Originally, this OS software was written in the Assembly language,...

Mô tả đầy đủ

Đã lưu trong:
Chi tiết về thư mục
Tác giả chính: Lee, Mark
Định dạng: Sách
Ngôn ngữ:English
Được phát hành: Global Media 2011
Những chủ đề:
Truy cập trực tuyến:http://scholar.dlu.edu.vn/thuvienso/handle/DLU123456789/26107
Các nhãn: Thêm thẻ
Không có thẻ, Là người đầu tiên thẻ bản ghi này!
Thư viện lưu trữ: Thư viện Trường Đại học Đà Lạt
Miêu tả
Tóm tắt:The most popular Operating Systems right now are Microsoft Windows, Mac OS X, and /Linux. Each is written in C. Why? Because Operating Systems run directly on top of the hardware. There is no lower layer to mediate their requests. Originally, this OS software was written in the Assembly language, which results in very fast and efficient code. However, writing an OS in Assembly is a tedious process, and produces code that will only run on one CPU architecture, such as the Intel X86 or AMD64. Writing the OS in a higher level language, such as C, lets programmers re-target the OS to other architectures without re-writing the entire code.