|
|
Advance C++ : Non-Modifying STL Algorithms
C++ STL algorithms are template functions which operate on sequence of elements. A large number of such functions are provided by the STL to do operations like searching and sorting. Most of the algorithms operates on some kind of iterators. So it...
|
|
C++ STL Functors
STL includes a set of template classes that overload the function call operator (operator ()). Instances of those classes are called functors or function objects. Many algorithm functions in STL take those functors as input and apply them on the...
|
|
C++ STL Iterators
Iterator is a concept of objects which can be used to traverse through the elements of a collection of objects like STL containers. An iterator object can point to an element within a range of elements and provides a mean to move the pointer through...
|
|
Inline and CSS Styles in HTML
Style attribute
The style attribute is used for defining the styles which is applied to specific HTML element. The syntax for the style attribute is:
style = “property:value;”
where,
property defines any valid CSS property
value is a...
|
|
Phrase tags in HTML
The phrase tags are added for a particular representation and can be viewed similar as other tags. Let start learning with the different tags with examples.
Marked text
The <mark>...</mark> tag is useful in displaying the element in yellow color....
|
|
C++ Statements, Blocks and Flow Control Statement
C++ program is a collection of statements. Normal statements are sequential and executed sequentially. These statements can be: Declaration Statements, or Expression statements. Also a group of statement treated as a single statement is called...
|
|
Formatting in HTML
In HTML, formatting the elements were useful in showing text with special meaning. Special elements of HTML are useful for defining text with particular meaning. Learn about different formatting with appropriate examples.
Bold formatting
Using...
|
|
HTML attributes
The attribute in HTML provides user with more information about the element. It is always added inside the opening tag of the element. Every attribute contains of two parts as name and value. The name defines the property to be assigned to the...
|
|
Elements in HTML
The HTML element consists of a start and end tag. The specific data is added inside the start and end tags. The general syntax for the HTML elements is:
<tagname> data </tagname>
All the data is added inside these start and end tags.
HTML...
|
|
The Basic HTML tags
Heading tag
Every html document contains a heading. All the heading have a particular size. Depending on the levels, the tags are ranging from <h1> to <h6>.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Example to demonstrate heading</title>...
|
|
STL Containers With Examples
All container classes are part of std name space. Most of the member functions of container classes are common and have common functionality. The decision of which container to use for specif need does not generally depend on the functionality of a...
|
|
Advanced C++ : Standard Template Library (STL)
As the name suggests STL is the part of the C++ standard library which provides a rich set of template classes and template functions to make application development faster. It is a software library, a very important part of the standard library and...
|
|
C++ Closures: Functors, Lamdas and std::function
Objects vs Closures
Closures might not be a familiar term for most of the C++ programmers. C++ programmers are very much familiar with class, object and function. Instances of classes are first-class objects in C++ but functions are not first-class...
|
|
HTML coding environment
Different HTML editors
The editor is a program useful for editing the HTML coding which is added as the markup. The text editors are used for adding the HTML markup. There are different advanced editors which are useful for adding the functionality...
|
|
Basic of C++ Standard Library
C++ standard library is a set of user defined types(classes), objects and functions which help to develop applications. Without standard library it is very very difficult to write a useful application. Standard library is an integrated part of the...
|
|
C++ Extending Operators for User Defined Types
We have discussed about inbuilt data types and inbuilt operators which operate on inbuilt data types only. We also discussed about user defined data types. Don’t you think that the operators should work for user defined data types also. You know that...
|
|
C++ User Defined Data Types
We learned that all the variables have type. We also learned that type specify the memory size required to store the variable data and the interpretation of the data. So far we discussed about predefined (in-built) data types which are specified in...
|
|
Overview and History of HTML
Overview about HTML
HTML defines Hypertext Markup Language. It is used for writing content in the web pages. The web pages are linked together using hypertext. All the webpage links are known as hypertext. HTML is used for adding the markup to a...
|
|
C++ Inbuilt Operators
Basically computer programming is all about data and manipulation of data. The manipulation is called operation and operations are accomplished with the help of functions and operators. Like functions work with data, operators also work with data. The...
|
|
C++ Inbuilt Data Types
In previous chapter we came to know about data types. There are data types defined by the language called in-built data types. C++ also allows to create new data types. In this chapter we will concentrate only on in-built data types. We will discuss...
|
|
|
|
|
|
|
To unsubscribe from Go4Expert newsletter, visit the following link:
|
|