Jump to content

Asset Template: Difference between revisions

No edit summary
No edit summary
Line 1: Line 1:
   
   
<strong>A page that serves as a basic template for the asset pages</strong>
<strong>A page that serves as a basic template for the asset pages</strong>
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.


== Getting started ==
== Getting started ==


== What is ''Asset name''? ==
== What is ''Asset''? ==
<p>
<p>
C++ is a general purpose programming
Asset Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum..
language and widely used now a days '
for competitive programming. It has
imperative, object-oriented and generic
programming features. C++ runs on lots of
platform like Windows, Linux, Unix, Mac etc.
C++ is an efficient
and powerful language and finds wide use
in various GUI platforms, 3D graphics and
real-time simulations. Because of the
inclusion of rich function libraries,
working in C++ becomes simpler and
convenient than C. Being object-oriented
programming like Java, C++ provides
the support of inheritance, polymorphism,
encapsulation, etc. Unlike C, C++ allows
exception handling and function overloading.
</p>
</p>
<p>The “Hello World” program is the first
<p>The “Hello World” program is the first

Revision as of 11:42, 23 October 2023

A page that serves as a basic template for the asset pages

Getting started

What is Asset?

Asset Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum..

The “Hello World” program is the first step towards learning any programming language and also one of the simplest programs you will learn. All you have to do is display the message “Hello World” on the screen.

Let us now look at the program :

#include<iostream>
using namespace std;
int main()
{
cout〈〈"Hello World";
return 0;
}

C++ is an Object Oriented Programming Language.
The main pillars of Object Oriented Programming are :

  • Objects and Classes
  • Inheritance
  • Polymorphism
  • Abstraction
  • Encapsulation