Posts

Showing posts with the label Programming

Hello World Program in various computer Languages

Image
  Hello World ------ C # include <stdio.h> int main () { printf ( "Hello World" ); return 0 ; } Hello World ------ C++ # include <iostream> int main () { std::cout<< " Hello World" <<endl; return 0 ; } Hello World ------ C# namespace program { class program { static void Main ( string [] args ) { System.Console.WriteLine( "Hello World" ); } } } Hello World ------ Java class HelloWorld { public static void main (String[] args) { System.out.println( "Hello World" ); } } Hello World ------ Python print ( 'Hello world' )

Why C++ is so much popular

Image
Introduction: C++ is a high level programming language use to create high performance application. C++ was developed by Bjarne Stroustrup in 1998  as an extension of C language.  Characteristics: Within few year C++ gain its popularity due its amazing characteristics It is an Object Oriented Programming Language. Gives programmer a high level of control on system, memory and resources. It has huge library functions It is a machine independent language. It is used for the development of the softwares. It is used in games development It is used to make operating systems. Beginners Programming Language: As I am also a programming student. One day I was thinking that why I am studying this C++ programming language and not studying the Python or Java. My Professor replied that this C++ is one of the basics of all high level language. He satisfied me by answering me that the famous Microsoft Windows is written in C++. Another reason why it is a taught to the beginners because it is entirely