function checkmemory%Copyright (c) 2014,Lv Qi%All
rights reserved.%%Redistribution and use in source and binary forms, with or
without modification, a...
分类:
其他好文 时间:
2014-05-10 20:07:52
阅读次数:
413
#include #include #include int main(int argc,char
*argv[]){ int n=0; FILE *fp; if((fp=fopen(argv[1],"r"))==NULL) {
perror("fopen");...
分类:
其他好文 时间:
2014-05-02 18:05:54
阅读次数:
308
前几天装的mysql,用的还挺爽的,第二天再用就不行了,报的错误如标题。网上也是众说纷纭,可能有很多原因会导致这种错误吧。我用的是将Mysqld这个进程杀掉,就可以启动mysql了
分类:
数据库 时间:
2014-05-02 17:44:14
阅读次数:
378
本次内容:file类 1 package array; 2 /** 3 * file类 4 */ 5
import java.io.File; 6 import java.io.IOException; 7 8 public class file { 9
public static ...
分类:
编程语言 时间:
2014-05-02 16:50:03
阅读次数:
387
#include #include #include int main(int argc,char
**argv){ FILE *fp_src,*fp_des; char buf[128]; int num; if(argc!=3) {
printf("t...
分类:
其他好文 时间:
2014-05-02 16:06:36
阅读次数:
562
shell是一个命令解释器;shell分为交互式shell和非交互式shell;
交互式shell就是命令行一问一答;非交互式shell是像shell文本那样,一次解析文本,
并未在命令行给我们作出回答。shell又分为登陆式shell和非登录式shell; 主要区分于是否输入用户名和密码,输入用户...
分类:
其他好文 时间:
2014-05-02 15:08:13
阅读次数:
256
#include #include float get_cpu_clock_speed(){ FILE
*fp; char buffer[1024]; size_t bytes_read; char *match; float clock_speed;
fp=fo...
分类:
其他好文 时间:
2014-05-02 14:20:39
阅读次数:
392
以下是我从各处搜集来的关于用键盘操作窗口信息,操作可能不是最简或者最好的,当然也可能不是最全的,以后遇到新的操作,我会即使添加,如果你有我没有列出的操作,希望你能提出,我可以加上!我实验的操作系统是ubuntu14.04,其他不清楚1.
用键盘移动窗口 1)ALT+F7 快捷键, 然后用上、下、左....
分类:
系统相关 时间:
2014-05-02 14:03:20
阅读次数:
592
Instructionshereare not great.First shut down
ST2.Make sure you use absolute paths for symlink:e.g.$ curl -kL
http://xrl.us/pythonbrewinstall | bash$ ...
分类:
其他好文 时间:
2014-05-02 11:01:23
阅读次数:
382
出现下列错误:
mlogc.c:32:23: error: curl/curl.h: No such file or directory
mlogc.c:1091: error: expected ‘)’ before ‘*’ token
mlogc.c: In function ‘logc_init’:
出错原因:缺少libcurl-dev or libcurl-devel
...
分类:
其他好文 时间:
2014-05-02 10:50:35
阅读次数:
371