Hello Again! Since We have Discussed the Hello World Program,Now its time to discuss the contents of a program. This was the Program we discussed:- #include<iostream> using namespace std; int main() { cout << "Hello World"; return 0; } In this Program ,There is a Input-Output stream Header file(iostream) , namespace , main() function , datatype (int), return statement and the Algorithm(I Know The the Program doesn't Fully Justify the Word).We will Discuss All These Topics including Many Other Topics in Detail,But wait we need to go Step by Step.So Here We Are .... The First Thing You Need to Know About C++ is that it is a case sensitive and Compiler Based Language.Now Question is What is a Case Sensitive Language?A Language is Case Sensitive if it Differentiates Between Uppercase and Lowercase Letters i.e. It Doesn,t Consider Them Same. Compiler Based Language Means It Needs to Compile The Program before Executing it.A compiler generate Machine c...
Posts
Showing posts from September, 2016
- Get link
- X
- Other Apps
Hello World! This is the basic program in any programming language and I want to start my blogging routine with this basic and simple program. This program doesn't use much of programming skills but tells us how far the technology has reached that a human created machine can respond back to us on the basis of our input. And nowadays computers could also respond physically and sensibly to human action as they are programmed to do so . Programming is a basic term in computers and electronics but it has huge importance and significance if we want to acquire detailed Knowledge in the stream of computer science. Now Lets come back to our topic,our basic C++ or any other programming language programme, but I will use only c++ for coding as the blog name refers.Now Lets Start:- #include<iostream>//basic header file containing basic input/output operation functions using namesspace std; int main()//the program execution starts here { cout << "Hello World" ...