Skip to main content

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:

#include <iosteam>
using namespace std;

int main() {


cout << "Hello World" << endl;


 return 0;
 }

so just compile and run that and see what you get!







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!

The IDE

Now that you have bought the arduino board (make sure you bought the arduino UNO) , let's get the IDE! This is a link to download the IDE: http://arduino.cc/en/main/software IDE stands for Integrated Development Enviorment, which is basically a programming suite for you to perform certain tasks easier. So in this case we will be trying to program our arduino! Go look at this tutorial for your first project with the Arduino: http://arduino.cc/en/tutorial/blink Make sure you hit build and run when you have it all set up!

1. Blinking LED

Blinking LED: HI, Axtyax here! Now that you have gotten your arduino and IDE, you are ready to start exploring the world of arduino! Things 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.  This is a visual representation of how to wire up your circuit that i made in an application called fritzing, which you should definitely download from this link to create schematics for any of your arduino projects. Ok so now that you have wired up the arduino and resistor and LED, lets get started on the code! This is the code: ----------------------------------------------------------------------------------------- /*   Blink   Turns on an...