Posts

Showing posts from October, 2018

C++ Basics And Inro To Mysterious Powers Of The Inventor Of C++

Image
Hi. In this post i will teach you "How to make c++ talk to you".....or technically speaking - "How you can print a string in C++". This post explains each and every basic things that will give you wings to code C++. Now here is a very basic program which i created to explain you.     Program Features - Now C++ is a collection of functions{if you don't know about it doesn't matter right now lets proceed.}. Here in the above program main() is the function from where execution of the program starts. So if you want to print anything then you are forced {by mysterious powers of Bjarne Stroustrup} to write it in main(). Note that C++ is a language free from exeptions, which means it ignores carriage returns and white spaces. And C++ statements end with semicolons. Comments - In C++ there is a new symbol for comments - "//" which is for a single line comment and                    ...