Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php on line 152

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831
{"id":14585,"date":"2015-05-06T22:30:10","date_gmt":"2015-05-07T03:30:10","guid":{"rendered":"https:\/\/alejcbgmz.withknown.com\/2015\/creation-and-use-of-vectors-in-c-tc1017-mastery23"},"modified":"2015-05-06T22:30:10","modified_gmt":"2015-05-07T03:30:10","slug":"creation-and-use-of-vectors-in-c-tc1017-mastery23","status":"publish","type":"post","link":"https:\/\/kenscourses.com\/tc101winter2015\/2015\/creation-and-use-of-vectors-in-c-tc1017-mastery23\/","title":{"rendered":"Creation and use of vectors in C++ #TC1017 #Mastery23"},"content":{"rendered":"
\n

Creation and use of vectors in C++ #TC<\/a>1017 #Mastery<\/a>23<\/p>\n

Vector<\/em>\u00a0is a template class that is a perfect replacement for the good old C-style arrays. It allows the same natural syntax that is used with plain arrays but offers a series of services that free the\u00a0C++ programmer<\/strong>\u00a0from taking care of the allocated memory and help operating consistently on the contained objects.<\/p>\n

The first step using\u00a0vector<\/em>\u00a0is to include the appropriate header:<\/p>\n

    \n
  1. #include<\/a><\/span> <\/vector><\/span><\/li>\n<\/ol>\n

    \u00a0<\/p>\n

      \n
    1. #include<\/a><\/span> <\/vector><\/span><\/li>\n
    2. using<\/span> namespace<\/span> std<\/span>;<\/span><\/li>\n
    3. \/\/…<\/span><\/span><\/li>\n
    4. vector<\/span><\/int><\/span> v<\/span>;<\/span><\/li>\n<\/ol>\n

      Here is my link<\/p>\n

      https:\/<\/wbr>\/<\/wbr>www.dropbox.com\/<\/wbr>s\/<\/wbr>m0popqb0mg8qbxo\/<\/wbr>Mastery23.mov?dl=0<\/a><\/p>\n

      Is a short video explaining a really easy vector \ud83d\ude42\u00a0<\/p>\n

      Here is other link about vectors :D:<\/p>\n

      http:\/<\/wbr>\/<\/wbr>www.cplusplus.com\/<\/wbr>reference\/<\/wbr>vector\/<\/wbr>vector\/<\/wbr>vector\/<\/wbr><\/a><\/p>\n

      http:\/<\/wbr>\/<\/wbr>www.codeguru.com\/<\/wbr>cpp\/<\/wbr>cpp\/<\/wbr>cpp_mfc\/<\/wbr>stl\/<\/wbr>article.php\/<\/wbr>c4027\/<\/wbr>C-Tutorial-A-Beginners-Guide-to-stdvector-Part-1.htm<\/a><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"

      \n

      Creation and use of vectors in C++ #TC<\/a>1017 #Mastery<\/a>23<\/p>\n

      Vector<\/em> is a template class that is a perfect replacement for the good old C-style arrays. It allows the same natural syntax that is used with plain arrays but offers a series of services that free the C++ programmer<\/strong> from taking care of the allocated memory and help operating consistently on the contained objects.<\/p>\n

      The first step using vector<\/em> is to include the appropriate header:<\/p>\n

        \n
      1. #include<\/a><\/span> <\/span><\/li>\n<\/ol>\n

         <\/p>\n

          \n
        1. #include<\/a><\/span> <\/span><\/li>\n
        2. using<\/span> namespace<\/span> std<\/span>;<\/span><\/li>\n
        3. \/\/…<\/span><\/span><\/li>\n
        4. vector<\/span><\/span> v<\/span>;<\/span><\/li>\n<\/ol>\n

          Here is my link<\/p>\n

          https:\/\/www.dropbox.com\/s\/m0popqb0mg8qbxo\/Mastery23.mov?dl=0<\/a><\/p>\n

          Is a short video explaining a really easy vector \ud83d\ude42 <\/p>\n

          Here is other link about vectors :D:<\/p>\n

          http:\/\/www.cplusplus.com\/reference\/vector\/vector\/vector\/<\/a><\/p>\n

          http:\/\/www.codeguru.com\/cpp\/cpp\/cpp_mfc\/stl\/article.php\/c4027\/C-Tutorial-A-Beginners-Guide-to-stdvector-Part-1.htm<\/a><\/p>\n<\/div>\n

          Continue reading →<\/span><\/a><\/p>\n","protected":false},"author":65,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4,3,26],"tags":[395,519,396,397,213,95,245,486,40,287],"_links":{"self":[{"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/posts\/14585"}],"collection":[{"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/users\/65"}],"replies":[{"embeddable":true,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/comments?post=14585"}],"version-history":[{"count":6,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/posts\/14585\/revisions"}],"predecessor-version":[{"id":19302,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/posts\/14585\/revisions\/19302"}],"wp:attachment":[{"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/media?parent=14585"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/categories?post=14585"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/tags?post=14585"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}