摘要:
原文地址:http://www.reigndesign.com/blog/love-hotels-and-unicode/讲得挺通俗的一篇文章On Sunday 28 October I attendedShanghai Barcamp 9, organised byTechYizu. It was... 阅读全文
摘要:
大家在参加ACM比赛或者参加c/c++实验技能竞赛的时候,如果遇到大量的输入和大量的输出时,调试起来很不方便。一来如果结果不正确的话,需要重复输入大量数据;二来如果大量输出的话,得仔细检查输出结果与正确答案是否一样。这两项任务有时让人很不舒服。 我们可以利用freopen()函数来重定向流,可以使调试起来更加简单方便。 一个简单的例子:#include #include using namespace std; int main() { int a; int b; freopen("in.txt", "r", stdin); freo... 阅读全文
摘要:
A Guide to the Multiboot ProcessThe XP and Vista boot process in general.The Windows dual and multiboot method of operation.The limitations of the Windows method and some alternatives.How third-party bootmanagers operate.The information on this page also applies toWindows 7- except where indicated.M 阅读全文
摘要:
一直在用centos,但对他的由来以及与RHEL的关系不是很明白,查些资料,小记一番。 倘若一说到Red Hat这个大名,大家似乎都听过。Qustion1:Red Hat家族中有哪些产品呢? Red Hat Linux、Red Hat Enterprise Linux、Fedora Core、CentOS。Qustion2:他们之间有什么关系呢? Red Hat公司的产品中,有Red Hat Linux(如Redhat8,9)和针对企业发行的版本Red Hat Enterprise Linux,都能够通过网络FTP免费的获得并使用,但是在2003年的时候,Red Hat Linux停止了发布. 阅读全文