
Search In
Program to check two Linked Lists are Identical or not in C.
#include<stdio.h>
#include<stdlib.h>
/* Structure for a linked list node */
struct node
{
int data;
struct node *next;
};
/* Returns true if linked lists a and b are ident
This blog will help you in getting geographical information of any location by using latitude/longitude.
By using Java API Geocoder, it is easy to get geographical information of any location. The response will be in JSON or XML format.
Write the f
In this post, you will know the reasons behind having the ReferenceError in your console log. Also we will discuss some common case with examples.
There is a common javascript error like this line: you are trying to access a variable or call a functi
"Difference between var and dynamic in C#"
To understand the differences more clearly, let us go through the following table:
VAR
DYNAMIC
This was introduced in C# 3.0
This was introduced in C# 4.0
In this
To get the table and field information of a table in MySQL using PHP we will follow the steps given below:
Make a connection.
Select a database.
Find the number of fields using the mysql_num_fields().
Then we will print the type, name, length, flag

Hii,
In this blog i am going share how to use css gradient property to increase visual appeal of your webpage.
Go through the example below to learn how we can apply gradient property in background of any html tags in different ways.
CSS gradient pr
Hello friend's
If you want to create a Call State function in Android see the below code example. Here I have used TelephonyManger method to get the information of call state And I have used PhoneStateListener. In AndroidManifest.xml I have added P
In the below example I have created popup layout. In popup.activity layout, First I have created LinearLayout, In LinearLayout I added a TextViw and Button, then in step second I have created rounded.xml layout & in drawable folder, here I have a
Create a table tbEmployeeMaster by following query :-
CREATE TABLE tbEmployeeMaster
(
EmpId INT NOT NULL IDENTITY(1,1) PRIMARY KEY,
EmpName VARCHAR(100),
EmpCode VARCHAR(15)
)
Create a user
What does array_keys() function in php.?
The array_keys() function returns an array containing the keys.
Syntax of array_keys() function:
array_keys(array,value,strict)
So, there are three main Parameter of array_keys().
These are following:
1-arr
