
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
As we know css3 has many awesome features which makes our work easy. CSS 3D Transforms one of them. In past time, we mostly used flash for showing the 3D effect after that Script replaces flash and now the CSS3.
Below is some useful information abou
Basically I have created a 2d rpg click to move game on unity. My problem is that my player isn't facing the right direction once it has reached it's position, for example please take a look at this video: Unity problem 2 - YouTube[^]. T
Hii,
In this blog i am sharing a simple javascript code for creating draggable objects using mouse event.
This code can be used when you want to add animation effect in your static html document and make it more attractive.
You can use this
What is Boxing and Unboxing?
There are various primitive data types in java such as byte, int, long. etc. We have wrapper classes corresponding to each of the data type in java.
Sometimes the values of primitive data types are needed but in t
I followed this tutorial on youtube: Unity3D. Top-down 8 directions movement - YouTube[^]. It took me a while but I've almost converted from movement by arrows to mouse touch . but now I have this problem, there's flickering that occurs
.Net :Lambda expression
Lambda expression was introduced in C# 3.0 and .Net framework 3.5. The Lambda expressions are the easiest and shortest way of writing anonymous methods.
Lambda Expression have some special syntax represented by follo
Hello Readers,
In my previous blog I have explained about How to implement cron job using laravel 4.x
Now, In this Blog I will guide you How to add folder in controller using laravel 4.x
If we want to add our own folder in controller and define co
Binary search is simple and fast search algorithm which works on the principle of divide and conquer.
It will work properly when the data collected is in sorted form.
It is having run-time complexity of Ο(log n).
This searching algorithm search a
If you are looking to perform certain task on swiping on the imageView or other widgets in android (the task may be change of activity, or change of the image on imageview).
Here is the code snippet that can help you out with this.
Step 1:- Declare
