A0

Labels

Showing posts with label c plus plus. Show all posts
Showing posts with label c plus plus. Show all posts

Operation of Hello World c++

 [C++ is case sensitive language means if we will use upper case letter at the place of lower letter in the syntax then program will generate the error.] Here is the article related to c++ programming. Firstly we will check the simple Hello World program and then break that program into pieces and then check the every line and its use in the program #include<iostream> using namespace std; int main() { cout<<"Hello World"<<endl; return 0;This is the program which will display the message "Hello World". Now we...

How to develop logic?

 Logic DevelopmentHave you heard programmer is nothing without logic? If yes then you should definitely read this article to which can help you in development of logics.Before some practices we should understand what is logic? can you answer this question? you should answer if you don't know then don't worry I will answer you. "The ability to solve any problem". If you know better answer then you can comment below this will also increase my...

Learn C++

 Learn C++We are starting the introduction of c ++ but before starting this we should talk about why we should learn c ++ as a first language. Mostly student ask this question, they thinks why c ++ and why not python because python is the most emerging language also easy to understand in the beginning but this is really an huge language we should not take start with it firstly we should develop some logic and we should understand how really...