Monthly Archives: August 2010
sizeof(buffer)
Question: What’s the size of buffer? char* buffer; Answer: On most mainstream systems 4 or 8 bytes, depending on the toolchain and operating system. Question: What’s the size of buffer? char buffer[128]; Answer: sizeof(char) * 128 which is 128, since … Continue reading
LessWatts.org
I just found a great page about how to reduce the power consumption of your laptop running GNU/Linux. http://www.lesswatts.org
Posted in Uncategorized
Leave a comment