# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/xx76upa
值傳遞與指針傳遞:C 語言函數參數的傳遞方式詳解**
C 語言中,指針可以作爲函數參數進行傳遞,這允許函數直接操作變量的內存地址,而不是操作變量的副本。這種傳遞方式對於數組、結構體等數據結構來說特別有效,因爲它可以避免複製整個數據結構所帶來的內存開銷。值傳遞先看下面的代碼段:void temp(int a) {a = 20;}void main() {int num = 10;temp(num);printf("num= :%d\\\\n",num);}程 ⌘ Read more=