09 2012 档案

摘要:.如果用VC开发程序,常见这么几个错误,C2001,c2005,c2011,这些错误的原因是什么。Answer: 在学习VC++的过程中,遇到的LNK2001错误的错误消息主要为: unresolved external symbol “symbol”(不确定的外部“符号”)。如果连接程序不能在所有的库和目标文件内找到所引用的函数、变量或标签,将产生此错误消息。一般来说,发生错误的原因有两个:一是所引用的函数、变量不存在、拼写不正确或者使用错误;其次可能使用了不同版本的连接库。编程中经常能遇到LNK2005错误——重复定义错误,其实LNK2005错误并不是一个很难解决的错误. 阅读全文
posted @ 2012-09-26 14:41 何合 阅读(173) 评论(0) 推荐(0)
摘要:#include <stdio.h> #include<stdlib.h> #include <memory.h> #include <math.h> #include <time.h> #define ABS(a) ((a)>0?(a):(-(a))) int getArrayMin(double arr[12][10]); double getScore(int pitchs,int ditance); int getFrameNum(FILE *filep,int frameLength); char *PCM_to_pi 阅读全文
posted @ 2012-09-19 10:22 何合 阅读(226) 评论(0) 推荐(0)
摘要:#include <stdio.h> #include <string.h> #include <stdlib.h> #include <memory.h> #include <math.h> #include <fftw3.h> #include <sys/time.h> #define ABS(a) ((a)>0?(a):(-(a))) //function declare int getScale(double pitch); int getPeaks(double array[],int len) 阅读全文
posted @ 2012-09-19 10:20 何合 阅读(1133) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2012-09-15 16:42 何合 阅读(1) 评论(0) 推荐(0)