
Search In
Doubly Linklist:- In Singly Linklist we have to move only in forward direction. we don't move in backward direction in linklist but Using Doubly Linklist we can iterate in both forward and backward direction. The Below code will shown you how to cre
Hi all,
Below is an example how to make half color on text using css. In this example we are using custom-attribute.
If you are looking for custom-attribute, In one my previous blog I have explained about it click custom-attribute to know more.
HT
Loops are used to execute a block of statements in repetition until a specific condition is satisfied.
There are 3 types of loops in C:
1. for loop
2. while loop
3. do while loop
1. for Loop:
Syntax for for loop:
for(in
It is based on Divide and conquer approach. We first partition the list and then sort it and after sorting we combine the final list or array
It is being merged and sort using the merge sort algorithm.
This
Hi Friends,
Git is the great tool for project versioning and code management, but mostly we are unaware so many things. So here I am going to tell you what is stashing in Git.
Sometimes we are working on some code and we don't want it to commit
File Handling in C:- The File handling is used in c to store the information in file. we can read the data from file and write the data into file for securing your data. Here the below example can show you how to write and read the data of structure
ARRAYS
1). An array is a collection of homogeneous elements.
2. An array is a derived data type.
3) Any array is like a built-in data types. All we have to do is to declare an array variable so that we can use it.
Example of Array to find the sum
HTML5 Geolocation API
The Geolocation API specifies a general putting into effect for the objects, properties,
and methods to unite with the Geolocation interface. One object holds the whole
implementation of the W3C Geolocation APIāthe Geolocation
Here we will see some of the functions listed below that are removed in PHP7.
1- ASP-style tags ( <%, <%= and %> ), is removed.
2- Script tags "<"script language='php' ">" Note: always use "<"?php ?">".
3-Split function that
Logging is an act of keeping the record of all data inputs, processes, data outputs, and final results in a program. It is one of the most important parts of application maintenance. Logging helps in easy and quick identification of the bug in the co
