Skip to main content

Intro to C++ and Hello World

Hey guys, axtyax here!

and today we will be beginning c++!




C++ is probably the most powerful programming language out there, and is constantly updated!

Some of the uses of c++ are
  • Video games
  • Commercial applications, for math or even analytics
  • Mobile applications
  • microcontrollers such as the arduino
  • and much much more
 So now that we have a basic understanding on why c++ is an optimal language, lets get started!

*WARNING c++ is not simple, but with some practice, you can make so many on your computer that you will regret not having starter c++ sooner!

So when we start out our program we need to declare all of the libraries we will be using.

think of libraries like a group of many tools for c++ that are made to be utilized by the user, without any libraries, displaying simple text on the screen would be VERY difficult.

right now, though, the only library we will use is call iostream
iostream just creates the stream of input and output from the console window

#include <iostream>
using namespace std;

namespace std; just makes it so that you dont need to add std:: before everything.

now we need to create out function
Functions are basically blocks of code that can be called at any time.
the function we will use in main(), which is automatically called upon by the computer.


int main()     {




//code here

return 0;
}

the code will be inserted between the curly brackets (when you put //, that line becomes a comment and will not be read by the compiler.)

you put int befor main because it declares that the return will be an integer, you might want to look up what a return is, but it doesnt matter much now.

Finally, we will finish by adding

cout << "Hello World" <<endl;

inside the curly brackets of main() to finish it all up.

this code just prints out "Hello World" to the console (without quotes), and "endl" just makes it so the line ends afther the "Hello World".


Ok so please Follow for more tutorials, and like and share this with others via google+ or facebook or twitter or whatever social networking site you use!

Thanks for reading!!!

Comments

Popular posts from this blog

Arduino Lesson : Using a DC motor

Hey guys, today we will be using the arduino to control a motor! to wire this just use this drawing I made in fritzing:   Unfortunately, these kinds of motors do not have an adapter that will allow you to connect it to the arduino, so I had to solder two jumper cables on each of those little metal things that come out of the motor and connect one to ground and the other to pin 6. This code will make that motor start spinning: void setup() { pinMode (6, OUTPUT); } void loop() { digitalWrite (6, HIGH); } Now upload this sketch to your arduino and the motor should start spinning. Which direction does it spin? now try swapping the cables, which way does it spin now? With most motors, it should be spinning in the opposite direction! If you have any problems do not forget to comment them! please follow me on this blog, and on twitter @axtyab, and hopefully refer this blog to others that you know!

C++ intro: Hello World

In almost all programming languages, the first program that people learn is how to print "Hello, World!" to the screen. So this is what we will be doing now in c++! So we start off  by doing this: #include <iostream> using namespace std; This basically says that we will be using the iostream library to be able to print things out to the console. don't worry about using namespace std; for now. int main() { return 0; } This is the function where everything will happen ( everything inside the brackets.) the return 0; is what we need to include at the end of the function because main is an int function. We just return 0 to show that the function has ended. cout << "Hello World!!!" << endl; This will go inside int main(). All this does is prints out Hello World!!! on the console, and endl just ends the line after that. Remember to include that semicolon at the end of cout. Your final code should look like this: #i

2. Fading LED

Arduino tutorial: Fading LED   Hi, Axtyax here, and now we will now learn how to make an LED fade out or in with an arduino! you will need: Solderless Breadboard (if you dont know what this is, look it up) Wires An arduino The arduino cable to connect it to your computer A computer with the arduino IDE  Im not completely sure, but i think you will need an 820ohm 1/8w resistor (if you know of better specs for the resistor, just comment please) And finally, an LED.  Use this schematic to wire up the circuit: Now lets have a look at the code:  -------------------------------------------------------------------------------------------------------------- /*  Fade  This example shows how to fade an LED on pin 9  using the analogWrite() function.  This example code is in the public domain.  */ int led = 9 ;           // the pin that the LED is attached to int brightness = 0 ;     // how bright the LED is int fadeAmount = 5 ;     // how ma