<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <link xmlns="http://www.w3.org/2005/Atom" rel="hub" href="https://overblog.superfeedr.com"/>
        <link xmlns="http://www.w3.org/2005/Atom" rel="self" href="https://learntocodefromkc.over-blog.com/rss" type="application/rss+xml"/>
        <title><![CDATA[Learn to Code with KC]]></title>
        <link>https://learntocodefromkc.over-blog.com/</link>
        <generator>Overblog - https://www.over-blog.com</generator>
        <description><![CDATA[teaching c++.]]></description>
                    <item>
    <title><![CDATA[Flashcards]]></title>
    <link><![CDATA[https://learntocodefromkc.over-blog.com/2015/01/flashcards.html]]></link>
    <guid>https://learntocodefromkc.over-blog.com/2015/01/flashcards.html</guid>
    <pubDate>Fri, 23 Jan 2015 02:54:09 +0100</pubDate>
    <description><![CDATA[This way you can edit the code to have more flashcards, more than two sides of a card, or only show one side at a time. Be creative! Here is a link to the word document for the code: https://onedrive.live.com/redir?page=view&resid=F98DCACF6B23E894!56... ]]></description>
        <dc:creator><![CDATA[Kelly Click]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Run Your Business Version 2]]></title>
    <link><![CDATA[https://learntocodefromkc.over-blog.com/2014/11/run-your-business-version-2.html]]></link>
    <guid>https://learntocodefromkc.over-blog.com/2014/11/run-your-business-version-2.html</guid>
    <pubDate>Fri, 14 Nov 2014 05:01:18 +0100</pubDate>
    <description><![CDATA[// // main.cpp // Run Your Business / // Created by Arisis on 11/10/14. // Copyright (c) 2014 Kelly Click. All rights reserved. // #include <iostream> using namespace std; string name; int nw; void EnterNameofCompany() { cout << "What is the name of your... ]]></description>
        <dc:creator><![CDATA[Kelly Click]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Check out my new game!]]></title>
    <link><![CDATA[https://learntocodefromkc.over-blog.com/2014/11/check-out-my-new-game.html]]></link>
    <guid>https://learntocodefromkc.over-blog.com/2014/11/check-out-my-new-game.html</guid>
    <pubDate>Tue, 11 Nov 2014 08:51:49 +0100</pubDate>
    <description><![CDATA[// // main.cpp // Run Your Business // // Created by Kelly Click on 11/10/14. // Copyright (c) 2014 Kelly Click. All rights reserved. // #include <iostream> using namespace std; string name; int nw; void EnterNameofCompany() { cout << "What is the name... ]]></description>
        <dc:creator><![CDATA[Kelly Click]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[New address]]></title>
    <link><![CDATA[https://learntocodefromkc.over-blog.com/2014/10/new-address.html]]></link>
    <guid>https://learntocodefromkc.over-blog.com/2014/10/new-address.html</guid>
    <pubDate>Tue, 21 Oct 2014 22:19:00 +0200</pubDate>
    <description><![CDATA[My blog will be changed to www.learntocodefromkc.com ]]></description>
        <dc:creator><![CDATA[Kelly Click]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Classes Part Two, Hierarchies]]></title>
    <link><![CDATA[https://learntocodefromkc.over-blog.com/2014/10/classes-part-two-hierarchies.html]]></link>
    <guid>https://learntocodefromkc.over-blog.com/2014/10/classes-part-two-hierarchies.html</guid>
    <pubDate>Sat, 18 Oct 2014 05:50:21 +0200</pubDate>
    <description><![CDATA[Class hierarchies are important to use and organize a large amount of info. A class can have a subclass or subclasses. In order to make a hierarchy start with making a class as normal. An example would be making a public function under the first class.... ]]></description>
        <dc:creator><![CDATA[Kelly Click]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Classes Part One]]></title>
    <link><![CDATA[https://learntocodefromkc.over-blog.com/2014/10/classes-part-one.html]]></link>
    <guid>https://learntocodefromkc.over-blog.com/2014/10/classes-part-one.html</guid>
    <pubDate>Tue, 14 Oct 2014 06:58:04 +0200</pubDate>
    <description><![CDATA[Classes can be used to organize things such as functions. You can first name the classes you are using. After, list the functions within the class. There are three ways to put things in a class: public, protected, and private. Using the word public allows... ]]></description>
        <dc:creator><![CDATA[Kelly Click]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Arrays]]></title>
    <link><![CDATA[https://learntocodefromkc.over-blog.com/2014/10/arrays.html]]></link>
    <guid>https://learntocodefromkc.over-blog.com/2014/10/arrays.html</guid>
    <pubDate>Fri, 03 Oct 2014 23:55:26 +0200</pubDate>
    <description><![CDATA[Arrays are collections of strings or numbers. There are several ways to use arrays. To use an array of strings use the word char first. Put a * before the name of the array. Put the number of items in the array in brackets after the name. This is a used... ]]></description>
        <dc:creator><![CDATA[Kelly Click]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Loops]]></title>
    <link><![CDATA[https://learntocodefromkc.over-blog.com/2014/10/loops.html]]></link>
    <guid>https://learntocodefromkc.over-blog.com/2014/10/loops.html</guid>
    <pubDate>Fri, 03 Oct 2014 23:13:58 +0200</pubDate>
    <description><![CDATA[Loops will save a bunch of time. They simply repeat what you ask for it to do. There are many things you can use loops with. For example: variables, functions, and array(which I will be doing next). There are two types of loops that I will do. The two... ]]></description>
        <dc:creator><![CDATA[Kelly Click]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[if/else statements]]></title>
    <link><![CDATA[https://learntocodefromkc.over-blog.com/2014/10/if-else-statements.html]]></link>
    <guid>https://learntocodefromkc.over-blog.com/2014/10/if-else-statements.html</guid>
    <pubDate>Fri, 03 Oct 2014 21:22:35 +0200</pubDate>
    <description><![CDATA[The next topic is writing logical statements using if/ else if/ else. For example, if you want the program to perform a certain task when a certain condition is met and something else when another is met instead you simply use an if statement. These if... ]]></description>
        <dc:creator><![CDATA[Kelly Click]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Operators]]></title>
    <link><![CDATA[https://learntocodefromkc.over-blog.com/2014/10/operators.html]]></link>
    <guid>https://learntocodefromkc.over-blog.com/2014/10/operators.html</guid>
    <pubDate>Fri, 03 Oct 2014 01:05:51 +0200</pubDate>
    <description><![CDATA[This part is simple. I will be using operators that will probably be used in most of your programs. We have used the = to set values to integers or strings. There are many more: + addition - substraction * multiplication / division != not equal to % remainder... ]]></description>
        <dc:creator><![CDATA[Kelly Click]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Functions]]></title>
    <link><![CDATA[https://learntocodefromkc.over-blog.com/2014/10/functions.html]]></link>
    <guid>https://learntocodefromkc.over-blog.com/2014/10/functions.html</guid>
    <pubDate>Thu, 02 Oct 2014 21:05:26 +0200</pubDate>
    <description><![CDATA[The next concept I will write about is the function. Functions are also highly important for effective programs. You only have to write what the function does once. After you tell the computer what the function does all you have to do is call the function.... ]]></description>
        <dc:creator><![CDATA[Kelly Click]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Variables]]></title>
    <link><![CDATA[https://learntocodefromkc.over-blog.com/2014/10/variables.html]]></link>
    <guid>https://learntocodefromkc.over-blog.com/2014/10/variables.html</guid>
    <pubDate>Thu, 02 Oct 2014 06:21:16 +0200</pubDate>
    <description><![CDATA[The first concept that I will introduce is the variable. Variable serve as a huge and important part in programs. A variable can be a string (words,letters,and even paragraphs) or a number. You have to declare a variable before you use it. In other words,... ]]></description>
        <dc:creator><![CDATA[Kelly Click]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Inputs and Outputs]]></title>
    <link><![CDATA[https://learntocodefromkc.over-blog.com/2014/09/inputs-and-outputs.html]]></link>
    <guid>https://learntocodefromkc.over-blog.com/2014/09/inputs-and-outputs.html</guid>
    <pubDate>Wed, 01 Oct 2014 05:20:58 +0200</pubDate>
    <description><![CDATA[All the programming that I do involves making outputs in the console. What appears in the console is the purpose of all the coding you write. Simply, write the coding and click “run”. You will see the output in the console. Many times you will make a... ]]></description>
        <dc:creator><![CDATA[Kelly Click]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[First post]]></title>
    <link><![CDATA[https://learntocodefromkc.over-blog.com/2014/09/first-post.html]]></link>
    <guid>https://learntocodefromkc.over-blog.com/2014/09/first-post.html</guid>
    <pubDate>Wed, 01 Oct 2014 05:07:51 +0200</pubDate>
    <description><![CDATA[There are two ways to write code. One is think of something you want to create and after try to figure out how to do it. That does a great job of exercising your creativity. The second way is to start coding and see where it leads. This can make interesting... ]]></description>
        <dc:creator><![CDATA[Kelly Click]]></dc:creator>
    </item>
            </channel>
</rss>

