Latest Posts

How to hire me for your projects?

No comments:
Do you need a software developer with more than 10 years of experience? Do you need help with C/C++, Assembler, Google Apps Script? Let me know what do you need and I will try to make you my best offer Cargando̷...
Read More

Cpp Program of Passing 2D array to Function

4 comments:
Passing multidimensional array to function is almost same as that of passing single dimensional array. In this tutorial i will show you how to pass multidimensional array to function and also in future tutorials i will show you how to pass multidimensional array to function using pointers. So let start. Program: // Program By http://solutionscpp.blogspot.com// Author Mansoor Ahmed// GMail ID: secguy000@gmail.com #include<iostream> using...
Read More

Cpp Program of Filling and Printing 2D Array

2 comments:
Filling and printing of Multidimensional array is bit tricky than that of one dimensional array. In this tutorial i am going to show you how to fill and print multidimensional array. As you can see in earlier tutorials that in single dimensional array we just used only single for loop, but in 2D array we will use for loop inside for loop or use can say nested loop. The reason is that in 2D array the data is arranged in rows and columns...
Read More

C++ Snake Game

8 comments:
Here is a source code of Snake Game coded in C++ originally by me. In this game i have just used simple functions, loops, Arrays and rand() function. The border of the game is made by using for loop. And the food is generated using rand function. The kbhit() function is used to sense the key pressed and according to that it moves the snake and eat the food. Hope you will like it. Source Code: // Program By http://solutionscpp.blogspot.com//...
Read More

Passing Array to a Function in Different ways

8 comments:
There are three ways to pass an array to a function. Each way and its program examples are give below: Here i am sharing a simple program that will initialize and array and then will send that array to a function which will make square of elements of that array. These three method include passing array to function using pointers. Passing array to function simply with name, And passing array to function with size.    Method...
Read More

C++ Program to find Transpose of Matrix

No comments:
In this c++ program we are going to take transpose of a matrix. Transpose of matrix include transforming rows into columns and columns into rows. In this program we will take an array of five rows and five columns and another array named transpose in which we will store the result of transformation. Program: // Program By http://solutionscpp.blogspot.com // Author Mansoor Ahmed // GMail ID: secguy000@gmail.com   #include<iostream> using...
Read More

C++ Program of Multiplication of Matrix Using 2D Array

3 comments:
In this program we are going to multiply two matrices. For this purpose we will declare two arrays, we will take input in these arrays and then we will multiply them and store their result in a new array.   Program: // Program By http://solutionscpp.blogspot.com // Author Mansoor Ahmed // GMail ID: secguy000@gmail.com   #include<iostream> using namespace std; int main() {     int a[10][10], b[10][10],...
Read More