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;

8.16.2014

How To Download All Your Google Data As Gmail, Blogger, Youtube etc

Download All Your Google Data with single click - Google Takeout
Figure: Google product list-download a copy
Today anyone keep his/her data on the web (i.e. clouding). Clouding has its own pro and cons. 

As a advantage of clouding, a authorized person can access his/her personal data any time and any location with a single click. But its major disadvantage is dependency at clouding.

What happen if clouding server is crash, there are no-backup, you can lost all your data and there are no options of restore.


Google understand this risk and now google gives the facility of download a copy of all your Google product such as Gmail, Blogger, Bookmark, Youtube, Google+, Orkut, Contacts, Calendar, Voice, Drive, etc. The current status, you can download a copy of  your 19 Google product. 

Very soon the no. of Google product increase and we'll hope that in the future Google give the facility to download your Google data in your system.

How I Download My Google data such as Gmail, Blogger, Youtube etc?

8.12.2014

How to Make a Continuous Diagonal Number Pyramid C program

Q. Write a C program to print the following continues odd reverse number pyramid pattern as:

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

Ans.

Before we start to write the code for above continuous diagonal number pyramid C program, let's focus on below image for better understand the structure of pattern.

How to make a Continuous Diagonal Number Pyramid C Program
Figure: How to make a Continuous Diagonal Number Pyramid C Program


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