Blog Detail
Programming Tutorials
http://myprogrammingtutorials.com/
Learn programming here!! it may be php, javascript, java, mysql, visual basic, html and also get tips and advices to improve your programming skills..
Recent Posts
Creating Functions In C++
Below is an example of using functions in C++. #include <iostream> void displayName() { std:cout SHARETHIS.addEntry({ title: "Creating Functions In C++", url: "http://myprogrammingtutorials.com/creating-functions-in-c...
Commenting Your Programs In C++
C++ comments come in two flavors: single-line comments and multiline comments. Single-line comments are accomplished using a double slash (//) . The double slash tells the compiler to ignore everything that follows, until the end of the line. Multili...
Using The Standard Namespace in C++
There is a way that you can use cout and endl without the std:: in the beginning by using namspace, I’ll give an example below using namespace. This will be a big help because will it will save you lots of time because you no longer need to typ...
Displaying A Text Using C++
#include <iostream> int main() { std::cout SHARETHIS.addEntry({ title: "Displaying A Text Using C++", url: "http://myprogrammingtutorials.com/displaying-a-text-using-c/" });...
Adding Comments in Java
SHARETHIS.addEntry({ title: "Adding Comments in Java", url: "http://myprogrammingtutorials.com/adding-comments-in-java/" });...
Adding Comments in PHP
Here are two types of comments in PHP: Use // to make a single-line comment Use /* and */ to make a one or more line comment. Comments should be place between /* and */. Below is an example: <html> <body> <?php //This is a single-...

