8.13.2016

Number Hash Symbol Pryamid

Q. Write a C program to make the following number hash symbol pyramid C program as:

     1 # 3 # 5
     1 #
     1 # 3
     1 #
     1

Ans.

/*c program for number hash symbol pyramid*/
#include<stdio.h>
int main()
{

8.07.2016

Basic Of Ms-Excel

You are here: Excel    Basic of Ms-Excel

You had been learned introduction of Ms-Excel, now it is time to to learn about the basic of Excel.
When you open Ms-Excel first time, its look something as following screenshot:
Basic Of Ms-Excel - Ms Excel theme
Figure: Screen shot of Basic Of Ms-Excel - Ms Excel theme
As you can analysis there are many options/tabs available in Ms-Excel. Let's we deal with all these options step by step. Firstly we can be divided these options in various parts as:

7.30.2016

Open MS-Excel Through Keyboard Shortcut Key

There are no pre-define keyboard shortcut key for open the MS Excel. If you frequently use Ms-Excel, then it is good for to make your own keyboard shortcut key to open Ms-Excel.
It is very easy to create a built-in keyboard short-key. MS Excel give the facility to create your own keyboard shortcut key so you can open the MS Excel direct through keyboard.

Creating or assign a keyboard shortcut key for MS Excel:


Step 1: Follows below process to Open Microsoft Office Excel Properties option 
            as:

           Start  All Programs  Microsoft Office  Microsoft Office Excel      
           (Right Click)   Properties
Screen shot for open the properties of MS Excel
Figure: Screen shot for open the properties of MS Excel        

7.19.2016

Introducation of Ms-Excel

What is Ms - Excel



MS-Excel One of the Application of MS Office
MS-Excel
One of the Application of MS Office

MS Excel is a worksheet application program, which is developed by Micro Soft Corporation USA for Microsoft Windows, Mac OS X and Linux.

It is used for storing, organizing and analyzing data. It features calculation, graphing tools, pivot tables, and macro programming language called Visual Basic for Applications. Excel is a part of Microsoft office or MS-Office.


How to open or create a new Excel File:

After the download/install the MS-Excel, there are first thing comes in mind how to open the your first excel file? There are many ways to open or creating a new file in excel as following :

Reverse Floyd Number Pattern C Program

Q. Write a reverse Floyd number pattern C program as:

       5
       4 3
       2 1 0
 or

      9
      8 7
      6 5 4 
      3 2 1 0

Ans.

/* reverse floyd number pattern c program source code */

7.16.2016

Continuous Number Pattern C Program

Q. Write a C program to make the following continuous number pattern as:

     1
     2 6
     3 7 10
     4 8 11 13
     5 9 12 14 15

Ans.

Before write to start the C coding, first of all you should the understand the concept of above number pattern.

5.15.2016

Diagonal Number Pattern In C

Q. Write a C program to make a diagonal number pattern as following design:

         1
        2
       3
      4
     5

Ans.

/* c program source code for diagonal number pattern*/