
Search In
This is an implementation of Circular Doubly Linked List in C Programming Language.
#include stdio.h
#include stdlib.h
struct node
{
int root, *next, *prev;
struct node n;
}
n* create_node(int);
voi
Rails Internationalization : Setting locale from Domain Name
For translating your application to other language, you can set I18n.default_locale to your locale in application.rb or in initializers as I told in my previous blog Configuring i18N Api
Hello Reader's
If you having the data coming from the Json array and you need it to show in html table. Then you can perform the short Jquery action for making it automated restful service.
Here the code of javascript
var _table_ = document.create
It gives an opportunity to invent our own data type and define what values the variable of this data type can take. This also helps in making the program more readable, which can be an advantage when a program gets complicated or when more than one p
// C program to check whether two strings are anagrams
#include <stdio.h>
#include <string.h>
void quickSort(char *arr, int si, int ei); //Function declared for sorting a string
bool areAnagram(char *str1, char *str2) //Function che
Web Services are made in .NET to reduce our task of doing something again and again for every website.
Any work that needs to be repeated again we will put that in web service.
Web service for ex if you are doing payment gat
In the below code I have created Runnable Thread program in android. Here first I have added TextView in activity_main.xml layout. In MainActivity I have used handler class then I have created a new Runnable interface , And I have also used o
$("#txtautocompid").autocomplete({
source: function (request, response) {
debugger;
$.ajax({
url: '../WardManagement/WardResultEntry/autocomplete2',
// url: '../WardManagement/War
When I try to call an implementation from another module via interface, I get null pointer exception
I need help! I get nullpointer exception, after deployment.
I have an interface AirlineClient in 'com.airline.model.hook' module.
Creating Folder Structure Inside already existing folders..Through Bat file
Hey guys...!!
Today i am gonna show you "how to make folders or folder structure inside already existing folders
so what i have done is, I created a folder named as LogicSim
