For calculating number of bits in an integer value we can have many approaches. This is more simple in my opinion. If you know anything […]
Month: September 2009
How memory leak occurs?
Memory leak is a problem that happens in programs when there is some unnecessary memory consumption or when program forgets to release the memory it […]
Difference between Session and Cookie
There is some difference between a session and a cookie. Anyway both of them performs the same functionality of maintaining some user information. But in […]
Converting a string to upper case
This function converts strings into upper case in C language. It is a simple one. I use ternary operator. Code: void UppCase(Char *str) { while(*str!=0)//traversing […]
Reverse a Linked List
It is simple just a four lines of code. It will be more useful for students during placement timings. Code: Void ReverseLinkedList(node* header) { node […]
Storing fonts into SQL Server Database
Recently I got a project from one of my relative’s organization. It deals about maintaining their customer’s details along with their credit amount and it […]
Automatic Synonym Generator
This is an application on LAMP stack which can be used further for online GRE tests. This is how all GRE tests works at the […]
What happens when I enter a URL in the web browser?
This is the question asked for me in one of my interviews. It is quite simple to answer. But involves quite a big process. First […]
How Ajax works?
Ajax stands for Asynchronous JavaScript and XML, is a group of interrelated web development techniques used on the client-side to create interactive web applications or […]