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":14836,"date":"2015-05-06T23:36:46","date_gmt":"2015-05-07T04:36:46","guid":{"rendered":"https:\/\/alejcbgmz.withknown.com\/2015\/creation-and-use-of-arrays-in-c-tc1017-mastery24"},"modified":"2015-05-06T23:36:46","modified_gmt":"2015-05-07T04:36:46","slug":"creation-and-use-of-arrays-in-c-tc1017-mastery24","status":"publish","type":"post","link":"https:\/\/kenscourses.com\/tc101winter2015\/2015\/creation-and-use-of-arrays-in-c-tc1017-mastery24\/","title":{"rendered":"Creation and use of arrays in C++ #TC1017 #Mastery24"},"content":{"rendered":"
\n

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

An array is a data structure, or more technically, a memory that stores a collection of items, all of the same type. Should imagine an array as a contiguous sequence of cells (memory spaces), or squares, each of which can save an item from the collection. Also, it is usual to draw as illustrated by the following figure:<\/p>\n

\"\"This figure represents an array of seven squares each of which can be used to store a data. The dimension or size of an array is the number of cells that comprise it. It should be clear, then, that the above figure corresponds to an array of dimension 7.<\/p>\n

Example of dimension<\/p>\n

\"\"<\/p>\n

\u00a0<\/p>\n

In 2 dimension be like<\/p>\n

\"\"<\/p>\n

\u00a0<\/p>\n

At the beginning I was thinking like how to do a sudoku in this way so here is and example<\/p>\n

\"\"<\/p>\n

\u00a0<\/p>\n

STEPS!!!<\/p>\n

    \n
  1. Type of Variable<\/li>\n
  2. Write array<\/li>\n
  3. Name of the array<\/li>\n<\/ol>\n

    EXAMPLE:<\/p>\n

    \u00a0 \u00a0 \u00a0float array [A];<\/p>\n

    In this Code that I did, I wrote some comments explaining what it means each line\u00a0<\/p>\n

    \"\"<\/p>\n

    LINKS that I Used to explain and do my WSQ’s and this awesome Mastery \ud83d\ude00<\/p>\n

    http:\/<\/wbr>\/<\/wbr>dis.unal.edu.co\/<\/wbr>~programacion\/<\/wbr>book\/<\/wbr>modulo3.pdf<\/a><\/p>\n

    https:\/<\/wbr>\/<\/wbr>www.youtube.com\/<\/wbr>watch?v=gCBpGyKyaGU<\/a><\/p>\n

    http:\/<\/wbr>\/<\/wbr>es.slideshare.net\/<\/wbr>jhonnyspch\/<\/wbr>arreglos-c<\/a><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"

    \n

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

    An array is a data structure, or more technically, a memory that stores a collection of items, all of the same type. Should imagine an array as a contiguous sequence of cells (memory spaces), or squares, each of which can save an item from the collection. Also, it is usual to draw as illustrated by the following figure:<\/p>\n

    This figure represents an array of seven squares each of which can be used to store a data. The dimension or size of an array is the number of cells that comprise it. It should be clear, then, that the above figure corresponds to an array of dimension 7.<\/p>\n

    Example of dimension<\/p>\n<\/p>\n

     <\/p>\n

    In 2 dimension be like<\/p>\n<\/p>\n

     <\/p>\n

    At the beginning I was thinking like how to do a sudoku in this way so here is and example<\/p>\n<\/p>\n

     <\/p>\n

    STEPS!!!<\/p>\n

      \n
    1. Type of Variable<\/li>\n
    2. Write array<\/li>\n
    3. Name of the array<\/li>\n<\/ol>\n

      EXAMPLE:<\/p>\n

           float array [A];<\/p>\n

      In this Code that I did, I wrote some comments explaining what it means each line <\/p>\n<\/p>\n

      LINKS that I Used to explain and do my WSQ’s and this awesome Mastery \ud83d\ude00<\/p>\n

      http:\/\/dis.unal.edu.co\/~programacion\/book\/modulo3.pdf<\/a><\/p>\n

      https:\/\/www.youtube.com\/watch?v=gCBpGyKyaGU<\/a><\/p>\n

      http:\/\/es.slideshare.net\/jhonnyspch\/arreglos-c<\/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":[304,486,40,287],"_links":{"self":[{"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/posts\/14836"}],"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=14836"}],"version-history":[{"count":6,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/posts\/14836\/revisions"}],"predecessor-version":[{"id":19298,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/posts\/14836\/revisions\/19298"}],"wp:attachment":[{"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/media?parent=14836"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/categories?post=14836"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/tags?post=14836"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}