I am Charmie

メモとログ

2014-08-19から1日間の記事一覧

C++: initialize std::vector

The following code initializes 1 and 2 dimensional std::vector with its size and initial value. The output should be declare 1 dimensional vector of size 4 with initial value 3 generated vector is size 4 vector: vec[0] = 3 vec[1] = 3 vec[2…