Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101fall2015/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/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/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/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/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/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/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/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/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/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/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/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/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/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/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/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831
{"id":25280,"date":"2015-10-28T20:02:35","date_gmt":"2015-10-29T02:02:35","guid":{"rendered":"https:\/\/ricardonewton.withknown.com\/2015\/mastery24--creation-and-use-of-arrays-in-c"},"modified":"2015-10-28T20:02:35","modified_gmt":"2015-10-29T02:02:35","slug":"mastery24-creation-and-use-of-arrays-in-c","status":"publish","type":"post","link":"https:\/\/kenscourses.com\/tc101fall2015\/2015\/mastery24-creation-and-use-of-arrays-in-c\/","title":{"rendered":"#Mastery24 -Creation and use of arrays in C++"},"content":{"rendered":"
\n

Hey there! This is #Mastery24<\/a> that is about the <\/span>creation and the usage of arrays in c++. Arrays are different numbers with the same type placed in separate spaces. It is like to fill drawers with information to use them after. This is used instead of declaring individual variables.<\/span><\/p>\n

\u00a0<\/span><\/p>\n

Let\u00b4s say you want the program to ask for 10 various numbers separately and then get the total of them, in this case you can use arrays. The only \u201cdisadvantage\u201d of using an array is that you have to define the number of values to introduce.<\/p>\n

Using arrays is easier than it sounds.<\/span><\/p>\n

\u00a0<\/span><\/p>\n

To understand its use, it is better to imagine them as boxes you are saving info into:<\/span><\/p>\n

\u00a0<\/span><\/p>\n

\n\n\n\n\n
\n

0<\/span><\/p>\n<\/td>\n

\n

1<\/span><\/p>\n<\/td>\n

\n

2<\/span><\/p>\n<\/td>\n

\n

3<\/span><\/p>\n<\/td>\n

\n

4<\/span><\/p>\n<\/td>\n

\n

5<\/span><\/p>\n<\/td>\n

\n

6<\/span><\/p>\n<\/td>\n

\n

7<\/span><\/p>\n<\/td>\n

\n

8<\/span><\/p>\n<\/td>\n<\/tr>\n

\n

\u00a0<\/span><\/p>\n<\/td>\n

\n

\u00a0<\/span><\/p>\n<\/td>\n

\n

\u00a0<\/span><\/p>\n<\/td>\n

\n

\u00a0<\/span><\/p>\n<\/td>\n

\n

\u00a0<\/span><\/p>\n<\/td>\n

\n

\u00a0<\/span><\/p>\n<\/td>\n

\n

\u00a0<\/span><\/p>\n<\/td>\n

\n

\u00a0<\/span><\/p>\n<\/td>\n

\n

\u00a0<\/span><\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n

\u00a0<\/span><\/p>\n

An array starts it\u00b4s count from the box number 0. Declaring an array is as easy as declaring some other thing. The structure of an array is like this:<\/span><\/p>\n

\u00a0<\/span><\/p>\n

type\u00a0 <\/span>nameofarray [number of spaces];<\/span><\/p>\n

\"\"\u00a0<\/span><\/p>\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <\/span><\/span><\/span>An array can be any type just as a normal variable, but it is a arrangement of variables.<\/span><\/p>\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <\/span><\/span><\/span>You can choose whichever name you want for your array.<\/span><\/p>\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <\/span><\/span><\/span>The number in between the squared braces [ ] is to set the number of values introduced in the array.<\/span><\/p>\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <\/span><\/span><\/span>The number of spaces in the array has to be an integer because it is a whole unit space.<\/span><\/p>\n

\u00a0\"\"<\/span><\/p>\n

The elements of an array can be used to be introduced by the user of the program, or you can type them after declaring in between braces= { }.<\/span><\/p>\n

\"\"\"\"<\/span><\/p>\n

\u00a0<\/span><\/p>\n

Then when you want to use the values already stored inside an array, you have to simply type the nameofarray[ number of space of the value]. Be aware that the space number 0 counts as a space.<\/span><\/p>\n

\u00a0<\/p>\n

\"\"<\/span><\/p>\n

\u00a0<\/span><\/p>\n

<\/p>\n

WATCH MY VIDEO https:\/<\/wbr>\/<\/wbr>youtu.be\/<\/wbr>XekmFL6VBwI<\/a><\/span><\/h2>\n<\/div>\n","protected":false},"excerpt":{"rendered":"
\n

Hey there! This is #Mastery24<\/a> that is about the <\/span>creation and the usage of arrays in c++. Arrays are different numbers with the same type placed in separate spaces. It is like to fill drawers with information to use them after. This is used instead of declaring individual variables.<\/span><\/p>\n

 <\/span><\/p>\n

Let´s say you want the program to ask for 10 various numbers separately and then get the total of them, in this case you can use arrays. The only “disadvantage” of using an array is that you have to define the number of values to introduce.<\/p>\n

Using arrays is easier than it sounds.<\/span><\/p>\n

 <\/span><\/p>\n

To understand its use, it is better to imagine them as boxes you are saving info into:<\/span><\/p>\n

 <\/span><\/p>\n

\n\n\n\n\n
\n

0<\/span><\/p>\n<\/td>\n

\n

1<\/span><\/p>\n<\/td>\n

\n

2<\/span><\/p>\n<\/td>\n

\n

3<\/span><\/p>\n<\/td>\n

\n

4<\/span><\/p>\n<\/td>\n

\n

5<\/span><\/p>\n<\/td>\n

\n

6<\/span><\/p>\n<\/td>\n

\n

7<\/span><\/p>\n<\/td>\n

\n

8<\/span><\/p>\n<\/td>\n<\/tr>\n

\n

 <\/span><\/p>\n<\/td>\n

\n

 <\/span><\/p>\n<\/td>\n

\n

 <\/span><\/p>\n<\/td>\n

\n

 <\/span><\/p>\n<\/td>\n

\n

 <\/span><\/p>\n<\/td>\n

\n

 <\/span><\/p>\n<\/td>\n

\n

 <\/span><\/p>\n<\/td>\n

\n

 <\/span><\/p>\n<\/td>\n

\n

 <\/span><\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n

 <\/span><\/p>\n

An array starts it´s count from the box number 0. Declaring an array is as easy as declaring some other thing. The structure of an array is like this:<\/span><\/p>\n

 <\/span><\/p>\n

type  <\/span>nameofarray [number of spaces];<\/span><\/p>\n

\"\" <\/span><\/p>\n

       <\/span><\/span><\/span>An array can be any type just as a normal variable, but it is a arrangement of variables.<\/span><\/p>\n

       <\/span><\/span><\/span>You can choose whichever name you want for your array.<\/span><\/p>\n

       <\/span><\/span><\/span>The number in between the squared braces [ ] is to set the number of values introduced in the array.<\/span><\/p>\n

       <\/span><\/span><\/span>The number of spaces in the array has to be an integer because it is a whole unit space.<\/span><\/p>\n

 \"\"<\/span><\/p>\n

The elements of an array can be used to be introduced by the user of the program, or you can type them after declaring in between braces= { }.<\/span><\/p>\n

\"\"\"\"<\/span><\/p>\n

 <\/span><\/p>\n

Then when you want to use the values already stored inside an array, you have to simply type the nameofarray[ number of space of the value]. Be aware that the space number 0 counts as a space.<\/span><\/p>\n

 <\/p>\n

\"\"<\/span><\/p>\n

 <\/span><\/p>\n

<\/p>\n

96<\/p>\n

<\/p>\n

Normal
\n 0<\/p>\n

21<\/p>\n

false
\n false
\n false<\/p>\n

ES-TRAD
\n X-NONE
\n X-NONE<\/p>\n

<\/p>\n

<\/p>\n

\/* Style Definitions *\/
\ntable.MsoNormalTable
\n\t{mso-style-name:”Tabla normal”;
\n\tmso-tstyle-rowband-size:0;
\n\tmso-tstyle-colband-size:0;
\n\tmso-style-noshow:yes;
\n\tmso-style-priority:99;
\n\tmso-style-parent:””;
\n\tmso-padding-alt:0cm 5.4pt 0cm 5.4pt;
\n\tmso-para-margin:0cm;
\n\tmso-para-margin-bottom:.0001pt;
\n\tmso-pagination:widow-orphan;
\n\tfont-size:12.0pt;
\n\tfont-family:Calibri;
\n\tmso-ascii-font-family:Calibri;
\n\tmso-ascii-theme-font:minor-latin;
\n\tmso-hansi-font-family:Calibri;
\n\tmso-hansi-theme-font:minor-latin;
\n\tmso-fareast-language:EN-US;}
\ntable.MsoTableGrid
\n\t{mso-style-name:”Tabla con cuadrícula”;
\n\tmso-tstyle-rowband-size:0;
\n\tmso-tstyle-colband-size:0;
\n\tmso-style-priority:39;
\n\tmso-style-unhide:no;
\n\tborder:solid windowtext 1.0pt;
\n\tmso-border-alt:solid windowtext .5pt;
\n\tmso-padding-alt:0cm 5.4pt 0cm 5.4pt;
\n\tmso-border-insideh:.5pt solid windowtext;
\n\tmso-border-insidev:.5pt solid windowtext;
\n\tmso-para-margin:0cm;
\n\tmso-para-margin-bottom:.0001pt;
\n\tmso-pagination:widow-orphan;
\n\tfont-size:12.0pt;
\n\tfont-family:Calibri;
\n\tmso-ascii-font-family:Calibri;
\n\tmso-ascii-theme-font:minor-latin;
\n\tmso-hansi-font-family:Calibri;
\n\tmso-hansi-theme-font:minor-latin;
\n\tmso-fareast-language:EN-US;}<\/p>\n

<\/p>\n

WATCH MY VIDEO https:\/\/youtu.be\/XekmFL6VBwI<\/a><\/span><\/h2>\n<\/div>\n","protected":false},"author":254,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4,3],"tags":[186,304],"_links":{"self":[{"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/posts\/25280"}],"collection":[{"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/users\/254"}],"replies":[{"embeddable":true,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/comments?post=25280"}],"version-history":[{"count":1,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/posts\/25280\/revisions"}],"predecessor-version":[{"id":25281,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/posts\/25280\/revisions\/25281"}],"wp:attachment":[{"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/media?parent=25280"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/categories?post=25280"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/tags?post=25280"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}