目前分類:c++ (7)

瀏覽方式: 標題列表 簡短摘要

example

a+=b    a=a+b

quantum2nd 發表在 痞客邦 留言(0) 人氣()

printf,strcpy,strcat

字串長度的計算=字的個數+1 (for "\0", 判斷終點) 

quantum2nd 發表在 痞客邦 留言(0) 人氣()

sudo yum install gsl gsl-devel  

// 注意 gsl : gives header; gsl-devel:  gives sourse code , 所以兩個都要裝!

quantum2nd 發表在 痞客邦 留言(0) 人氣()

有時候用malloc()來給記憶體會出現bus error

改成calloc() 就沒問題了

quantum2nd 發表在 痞客邦 留言(0) 人氣()

不錯的學習web

阿瑟 C++教學文章庫(概念很清楚)

quantum2nd 發表在 痞客邦 留言(0) 人氣()

OPTION in command line

ex: g++ -W test.c -o test

quantum2nd 發表在 痞客邦 留言(0) 人氣()

/* How to use * and & */

int *b , a = 6, aa[a];// b is IP, a is value ,aa[a] is int array with size a

quantum2nd 發表在 痞客邦 留言(0) 人氣()