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
‘#mastery13’ Articles at TC101 Fall 2015, Page 3
Introduction to Programming Python and C++

Tag Archives: #mastery13

Masteries 7 and 13: Use of comments in C++ & Importing and using C++ libraries

OK so for this new series of masteries, I am also going to improve myself in movie maker … jajaja 🙂 Here is the video: https://youtu.be/YxFgrD5cA3E Thanks for watching!

Importing and using C++ libraries

Se clasifican por el tipo de trabajos que hacen. En C++ se incluyen ciertos archivos llamados librerías, que tienen el código objeto de muchos programas que permiten hacer cosas comunes, como leer el teclado, escribir en la pantalla, manejar números, realizar funciones… Continue Reading →

Masteries 11, 12 and 13

Wow, i lazied out in this one, but hey, i DO teach you how to do the stuff, even if it’s in a really simple way.

Masteries 11, 12 and 13

Wow, i lazied out in this one, but hey, i DO teach you how to do the stuff, even if it’s in a really simple way.

C++ Libraries #Mastery13

Libraries are important since they contain predetermined commands used to trigger several actions. For instance, we have the C++ libraries one of which is the iostream which includes commands as cout or cin (for output and input). In order to include a library in the code you must write as follows:

Nameofthelibrary 

The Nameofthelibrary depends on the type of commands or functions you’re looking for. For instance, if you want to do a logarithmic function you would probably like to search for a library related to math which in this case would be cmath . 

In this code, several C++ libraries were used to include commands and functions:

                   

 

Here are the several references for calling libraries: http://www.cplusplus.com/reference/

Thanks! 

What should you work on?

Week #12 and more partial exams for you.

For this week's readings:
C++ (TC1017) should either be looking at support for your project, ImageMagick C++ libraries are a good start.
Python (TC1014) should be finishing chapter 11 (Dictionaries).