Matrix Operations
The following program demonstrates how 2D-array can be used as a function argument. The below program performs basic matrix operations such as matrix addition, multiplication, transpose of a matrix etc. /* ProgramRead More…
The following program demonstrates how 2D-array can be used as a function argument. The below program performs basic matrix operations such as matrix addition, multiplication, transpose of a matrix etc. /* ProgramRead More…
Similar to normal variable, we can also pass an array to the function. There is no major difference between passing a variable and array except that we have to specify the dimensionRead More…
In my previous post titled “What is File?” I explained about the concept of file, file attributes and file types. This post is the supplementary for the same so if you haven’t readRead More…
A file is the most important and basic entity for data storage. In this article we will get some basic knowledge about concept of a file, different attributes of file, types ofRead More…
In my last post I had explained about “Deadlock Detection” techniques in which I explained how we can detect if system has deadlock or not. During the deadlock detection step if weRead More…
In my previous post, I had explained Banker’s algorithm as a “Deadlock Avoidance” technique. We discussed basic concept of bankers’ algorithm as well as features and limitations of it. In this post,Read More…
Hello everyone! In my previous two posts I had explained some basic information regarding “Deadlock” and “Necessary Conditions to occur Deadlock”. if you haven’t read those posts yet, I strongly suggest youRead More…
In previous post I explained about what is deadlock and now in this post I will try to explain necessary conditions to occur deadlock. It focuses on what conditions need to beRead More…
In this and following posts I am going to explain one of the most important issue of the operating system design called “Deadlock”. It deals with the basic concept of deadlock, howRead More…
In my last post I discussed about “Types of Function”. In this post I will serve one important concept which is related to the function e.i Call by value v/s Call by referenceRead More…