
Search In
There is an interesting way to multiply two positive integer values without using " * " operator and using binary shift operator. The complexity of the program will depends on the number of bits in the binary representation of the multiplier value.
Hello Readers! As we all know a file is a collection of information which is stored on computer's disk and information can be saved to files and then later reused. But, what is the use of file handling why it is required?? Well, let's take an
Queue is a kind of Abstract data structure that holds items in same order. Queue follow FIFO mechanism for operations like insertion and deletion of items.
Note :
- One end is always used to insert data called enqueue.
- Other end is always used t
The include() function
The include() function is used to include the whole text of a specific file to another file where we want to include that file. While including the file if there will be any error in loading the file, it will only produce the
While developing project in ASP.NET there are situations where you need to make your task multi threaded to run in background or in foreground.
For ex : If your application is sending notification after each day you need to create a thread for that
File represents a set of bytes whether a text file or a binary file.
File is used to store data in the textual or in encoded format as per as use requirement.
Modes of File
Mode
Description
r
Opens an existi
While working with character and strings we need to use predefined string type functions for making our task easy and efficient.
Function
Work of Function
strlen()
Calculates the length of string
strcpy()
How to Setup SSH with Public Key Authentication on Ubuntu 14.04
This blog will let you know how to set up an SSH server with public-key authorization SSH is a great tool to control Linux-based computers remotely.
Installing SSH On The Server
With easy access to 3D printers, design software, and crowdfunding, inventors can easily create a prototype of their product. However, they need to select one of the following types first:
Presentation Prototype: This combines off-the-shelf compon
Hi, In this blog I tried to provide an efficient solution for a famous coin exchange problem using dynamic problem in bottom up approach whose time complexity is O(mn).
Problem Definition
In coin exchange problem you can think of a coin v
