🎴 Flashcard Mode

Linux/Unix System Programming

Card1 / 20
Mastered0
Review0
QuestionClick to flip

How can I tell how much memory my system has?

AnswerClick to flip back
A
Use sysctl()
💡 Explanation:

The sysctl() system call is used to query and modify kernel parameters, including system memory information. Options A and C refer to non-standard functions, while malloc() is for memory allocation, not querying system memory. On modern Linux, /proc/meminfo is also commonly used.

Change Mode