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/feed-rss2.php on line 8
‘#53548a’ Articles at Courses by Ken https://kenscourses.com/tc101winter2015 Facilitator of Learning Experiences Sat, 21 Feb 2015 04:36:52 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ #Mastery09 #TC1017 Basic Types C++ https://kenscourses.com/tc101winter2015/2015/mastery09-tc1017-basic-types-c/ Sat, 21 Feb 2015 04:36:52 +0000 http://alejcbgmz.withknown.com/2015/mastery09-tc1017-basic-types-c Continue reading ]]>

Why is important declared variables?

because in that way you are saying the kind of the data and how that data will be called. 

This is the basic types for C++ so, please be careful when you are using like

int main {}

int

double

// You can use whichever you want but!! following the right variable for the quantity you will recieve!

 

https://www.dropbox.com/s/01wo97zpmjpm4nc/Mastery09.mov?dl=0

ENTEROS
byte   0 -> 255
short   -32,768 -> 32,767
int   -2,147,483,648 –> 2,147,483,647
long  -9,223,372,036,854,775,808 -> 9,223,372,036,854,775,807

• REALES

     decimal

float 1.5 E-45 –> 3.4E38
double 5.0E-3424 –> 1.7E308

• TIPO MONETARIO

decimal 1.0 E-28 –> 7.9E28

• Datos de tipo CARACTER

Char    a    s    N     1     $

• Datos de tipo CADENA DE CARACTERES

String  Alejandra Jacobo

• Boleano

bool     True, False
 
 
Basic Types C++
 

]]>
https://creativecommons.org/licenses/by/4.0/