Title

第10講 其他遞迴例子與指標(第九章後半)與陣列(第十章)

Syllabus

章節大綱

L10_A
       其他遞迴例子
       Other examples of recursion
       指標
       Pointer
       如何取得變數的位址?
       How to get the address of variables?
       甚麼是指標變數?
       What is a Pointer?
       如何產生指標變數?
       How to create a Pointer? Swap?

 
L10_B
        如何將指標當做參數傳入 function?
        How to use Pointer as a function input parameter?
        指標與陣列
        Pointers and Arrays
        等價的寫法
        (equivalent notation)
            a[i]  <--->  *(a+i)
            &a[i] <--->  (a+i)