2.01.2015

How To Design Taj Mahal Shape Pyramid

Q. Write a C program to print the following Taj Mahal Shape pyramid as:

*
***
*****
*******
**
****
******
*******
******
****
**
*******
*****
***
*

Ans.

/*c program for Taj Mahal shape pyramid*/
#include<stdio.h>
int main()
{

12.15.2014

How To Make Continuous Vertical-Horizontal Number Pyramid

Q. Write a C program of Continuous Vertical Horizontal Number Pyramid design as:

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

Ans.

Before we starting the coding of above number pyramid design, let's focus the following source image of above pyramid:
Showing flow of data in Number Pyramid Design
Figure: Showing flow of data in Number Pyramid Design

So, In above pyramid design it is too easy to making every rows and columns. let's starting the writing source code.

/*c program for continuous vertical horizontal number pyramid*/
#include<stdio.h>
int main()
{

10.26.2014

How To Enable Missing Local Area Network Connection Icon In Windows 7

There are several situations comes when you want to connects to the Ethernet using wired or cable, but it's can't work because the Ethernet LAN icon is not showing in your computer.
In other word LAN (Local Area Network) icon is missing in adapter setting at networking and sharing center window.

Is my computer have something wrong?
Don't worry, your computer is absolutely okay and not to do any action like restore or format your system.

Is my LAN wired cable is not working properly?
It may be yes or no. Cross check your LAN cable on other working computer that was successfully connected to wired Ethernet.

What is the reason of not showing LAN icon in my network & sharing center in my computer?

9.25.2014

How To Print V-Shape Pyramid In C

Q. Write a C program to print a V-Shape Pyramid as:

 *   *
  * *
   *

Ans.

/*how to print v-shape pyramid in c*/
#include<stdio.h>
int main()
{

9.03.2014

How To Print M-Shape Pyramid In C

Q. WAP to print M shape pyramid In C language as:

*   *
** **
* * *
*   *
*   *

Ans.

/* how to print m shape pyramid in c*/
#include<stdio.h>
int main()
{

8.28.2014

How To Print E-Shape Pyramid In C

Q. How to print or wap to a E-Shape Pyramid in C language as?

*****
*
***
*
*****

Ans.

/*e-shape pyramid in c*/
#include<stdio.h>
int main()
{

8.17.2014

How To Design A Number Rhombus Pattern C Program

Q. Write a C program to print the following number rhombus pattern design as:

      1 1
     2   2
    3     3
   4       4
  5         5
   4       4
    3     3
     2   2
      1 1

Ans.

/*c program for how to design a number rhombus pattern*/
#include<stdio.h>
int main()
{
 int num,r,c,sp,n;