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":21857,"date":"2015-09-18T07:09:57","date_gmt":"2015-09-18T12:09:57","guid":{"rendered":"https:\/\/ricardonewton.withknown.com\/2015\/mastery09---basic-types-and-their-use-in-c"},"modified":"2015-09-18T07:09:57","modified_gmt":"2015-09-18T12:09:57","slug":"mastery09-basic-types-and-their-use-in-c","status":"publish","type":"post","link":"https:\/\/kenscourses.com\/tc101fall2015\/2015\/mastery09-basic-types-and-their-use-in-c\/","title":{"rendered":"#Mastery09 – Basic types and their use in C++"},"content":{"rendered":"
\n

Hello there! This is #Mastery09<\/a> that will be talking about basic types and their use in C++. Let\u2019s get started!<\/span><\/p>\n

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

C++ is able to do many kinds of stuff depending on what you code, it is not all about the Hello World activity. C++ can handle many kinds of stuff and for that we need to learn how to make use of the types.<\/span><\/p>\n

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

The programming code is not aware of where is all our data going to but one thing he needs to be sure of is to know what type of information it\u00b4s being handled.<\/span><\/p>\n

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

Types can be classified in to:<\/span><\/p>\n

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

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <\/span><\/span><\/span>Character types: this collection can represent just one character. The most common and used one is char which stores in one byte.<\/span><\/p>\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <\/span><\/span><\/span>Numerical integer types: These range can store any kind of whole numbers, like 1 or 500 the thing here is that fractional numbers are not accepted. <\/span><\/p>\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <\/span><\/span><\/span>Floating-point types: These can let you represent values with decimal point just as 34.89, and let\u2019s you interact with them.<\/span><\/p>\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <\/span><\/span><\/span>Boolean types: This type bool, can be only represented in two circumstances, TRUE or FALSE.<\/span><\/p>\n

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

Here`s a table of types with its description:<\/span><\/p>\n

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

Type<\/strong><\/p>\n<\/td>\n

\n

Description<\/strong><\/p>\n<\/td>\n<\/tr>\n

\n

bool<\/p>\n<\/td>\n

\n

true or false.<\/p>\n<\/td>\n<\/tr>\n

\n

char<\/p>\n<\/td>\n

\n

single octet, one byte. Integer<\/p>\n<\/td>\n<\/tr>\n

\n

int<\/p>\n<\/td>\n

\n

integer<\/p>\n<\/td>\n<\/tr>\n

\n

float<\/p>\n<\/td>\n

\n

A single-precision floating point .<\/p>\n<\/td>\n<\/tr>\n

\n

double<\/p>\n<\/td>\n

\n

A double-precision floating point.<\/p>\n<\/td>\n<\/tr>\n

\n

void<\/p>\n<\/td>\n

\n

absence of type.<\/p>\n<\/td>\n<\/tr>\n

\n

wchar_t<\/p>\n<\/td>\n

\n

wide character<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

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

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

\u00a0<\/p>\n

\u00a0<\/p>\n

\u00a0<\/p>\n

\u00a0<\/p>\n

\u00a0<\/p>\n

\u00a0<\/p>\n

\u00a0<\/p>\n

\u00a0<\/p>\n

\u00a0<\/p>\n

\u00a0<\/p>\n

\u00a0<\/p>\n

Every type differs from its size; they can take different amounts of memory.<\/p>\n

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

In floating point types, size affects the precision of the calculations.<\/span><\/p>\n

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

All of the types listed before are known as arithmetic types.<\/span><\/p>\n

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

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

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

C++ does accept a big range of types based on the fundamental ones, the other ones are known as compound and is one of the most important skills in c++ language.<\/span><\/p>\n

WATCH MY VIDEO\u00a0https:\/<\/wbr>\/<\/wbr>youtu.be\/<\/wbr>vCDCJ9CrCl4<\/a><\/span><\/h2>\n

<\/h2>\n

\u00a0<\/span><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"

\n

Hello there! This is #Mastery09<\/a> that will be talking about basic types and their use in C++. Let’s get started!<\/span><\/p>\n

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

C++ is able to do many kinds of stuff depending on what you code, it is not all about the Hello World activity. C++ can handle many kinds of stuff and for that we need to learn how to make use of the types.<\/span><\/p>\n

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

The programming code is not aware of where is all our data going to but one thing he needs to be sure of is to know what type of information it´s being handled.<\/span><\/p>\n

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

Types can be classified in to:<\/span><\/p>\n

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

               <\/span><\/span><\/span>Character types: this collection can represent just one character. The most common and used one is char which stores in one byte.<\/span><\/p>\n

               <\/span><\/span><\/span>Numerical integer types: These range can store any kind of whole numbers, like 1 or 500 the thing here is that fractional numbers are not accepted. <\/span><\/p>\n

               <\/span><\/span><\/span>Floating-point types: These can let you represent values with decimal point just as 34.89, and let’s you interact with them.<\/span><\/p>\n

               <\/span><\/span><\/span>Boolean types: This type bool, can be only represented in two circumstances, TRUE or FALSE.<\/span><\/p>\n

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

Here`s a table of types with its description:<\/span><\/p>\n

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

Type<\/strong><\/p>\n<\/td>\n

\n

Description<\/strong><\/p>\n<\/td>\n<\/tr>\n

\n

bool<\/p>\n<\/td>\n

\n

true or false.<\/p>\n<\/td>\n<\/tr>\n

\n

char<\/p>\n<\/td>\n

\n

single octet, one byte. Integer<\/p>\n<\/td>\n<\/tr>\n

\n

int<\/p>\n<\/td>\n

\n

integer<\/p>\n<\/td>\n<\/tr>\n

\n

float<\/p>\n<\/td>\n

\n

A single-precision floating point .<\/p>\n<\/td>\n<\/tr>\n

\n

double<\/p>\n<\/td>\n

\n

A double-precision floating point.<\/p>\n<\/td>\n<\/tr>\n

\n

void<\/p>\n<\/td>\n

\n

absence of type.<\/p>\n<\/td>\n<\/tr>\n

\n

wchar_t<\/p>\n<\/td>\n

\n

wide character<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

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

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

 <\/p>\n

 <\/p>\n

 <\/p>\n

 <\/p>\n

 <\/p>\n

 <\/p>\n

 <\/p>\n

 <\/p>\n

 <\/p>\n

 <\/p>\n

 <\/p>\n

Every type differs from its size; they can take different amounts of memory.<\/p>\n

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

In floating point types, size affects the precision of the calculations.<\/span><\/p>\n

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

All of the types listed before are known as arithmetic types.<\/span><\/p>\n

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

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

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

C++ does accept a big range of types based on the fundamental ones, the other ones are known as compound and is one of the most important skills in c++ language.<\/span><\/p>\n

WATCH MY VIDEO https:\/\/youtu.be\/vCDCJ9CrCl4<\/a><\/span><\/h2>\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;}<\/p>\n

<\/h2>\n

 <\/span><\/p>\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,682,683,164],"_links":{"self":[{"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/posts\/21857"}],"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=21857"}],"version-history":[{"count":1,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/posts\/21857\/revisions"}],"predecessor-version":[{"id":21859,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/posts\/21857\/revisions\/21859"}],"wp:attachment":[{"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/media?parent=21857"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/categories?post=21857"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/tags?post=21857"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}