Entries from 2016-06-19 to 1 day

Week 4 Lecture, continued

今回はポインタがメインのお話。難しい、難しい…このlectureは、再度見直した方がよさげ。最後にpointerの説明のおそらくわかりやすいであろうクレイアニメもついてたし(多分わかりやすい、でも集中力切れてた)。 pointer: the address of the first charact…

Problem set 2 - Initializing

toupper(): 文字を大文字にする string: pointerであり、string の初めの文字がcomputer上にstoreされている場所(=番地、位置情報を表す数字、ということ)をしまっている。 string[i]とすると、最早これはpointerではなくなり、character(int型)になる。 “ ”…