ccccourse / sa110a

課程:軟體工程與演算法 -- 筆記、習題與報告
0 stars 53 forks source link

加分練習題:請寫出自己的 C 語言標準函式庫 #18

Open ccckmit opened 3 years ago

ccckmit commented 3 years ago
  1. memcpy()
  2. snprintf() -- 只要支援 %c, %s, %d 就可以了。
  3. assert()

務必一開始就聲明下列事項

  1. 是否有複製別人的,複製的範圍等事項
  2. 若是原創,直接在開頭標明『本程式(本文)是原創』
  3. 把你的閱讀材料放在引用裡面
    • 若有模仿請直接說模仿 (複製就直接寫複製,不能寫模仿)
  4. 沒寫就直接說沒寫,交出你有寫的範圍即可
  5. 如果沒有自己寫出來,寫閱讀心得或加上程式註解也勉強會有點分數
    • 但絕對不能把複製或抄來的,假裝是原創來繳交。
austin362667 commented 2 years ago

Source Code & Notes

My C Standard Library

===After Copy=== Copied source string is Hello, world! Copied destination string is Hello, world!

===Before Copy=== Inited source int array is: 0 1 2 3 4 5 Inited destination int array is: 1793996144 1 1793995840 1 -106909504 1

===After Copy=== Copied source int array is: 0 1 2 3 4 5 Copied destination int array is: 0 1 2 3 4 5


- mySnprintf Results

TBC..

NubletZ commented 2 years ago

資工三 110810538 魏美亞 Source Code & Notes assert() have not finished yet..

FUYUHSUAN commented 2 years ago

資工三 110810505 傅于軒 程式部分 有時間會持續進行更新