Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

Check two Linked Lists are Identical or not in C

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

Getting ZipCode from lat/long in android

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

What is ReferenceError: $ is not defined

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#

"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

How to get Table and Field Information of MySQL database?

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

Using CSS gradient property in background

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

How to make Call State in android

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

How to create popup layout

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

Auto Generated Auto Incremented Alphanumeric Sequential Code in SQL SERVER

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

How to use array_keys() function php.?

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

1 360 481
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: