Search This Blog

July 22, 2014

How To Install Windows 7 Step-By-Step

Turn on your computer, insert the Windows 7 installation disc or USB flash drive, and then Shut down your computer.
Restart your computer.
Press any key( eg: F1, esc ) when prompted, and then follow below steps.


July 21, 2014

How to Adjust/Change Screen Brightness in Windows

Step 1
Click "Start >> Control Panel >>Hardware and Sound >>Power Options" to open the Power Options window.
OR
Right Click >> Personalization >>Display on the bottom of left side >>Click Adjust Brightness


July 18, 2014

Best top 5 Free Graphic Design Softwares

Graphic design software and desktop publishing software are essentially the same thing. The primary difference is that the desktop publishing category includes some consumer level programs not typically considered graphic design software. The best free graphic design softwares are

10 Best Way to be Successful in Life and Business

Why do some people succeed, while others fail to reach their goals?


July 17, 2014

Best and easy way of adding Related post to blogger/blodspot

Related posts widget is very important for a blog, because it increases the number of page views and also help the visitor to view other posts related to blog. Now here is wonderful trick to display links to related posts below each posts or sides of blog.

July 16, 2014

How to Make your Computer/ Windows 7 faster and faster

1. Removing unwanted programs and services from startup

For this Click the Start Menu, go to Search or Run, search “msconfig” Choose the “Startup” tab, and uncheck the boxes of the programs you don’t want to run on startup and click ok bottom. Do not remove any necessary startup programs.


July 15, 2014

How to Delete Images/Pictures from PDF File?

I will show you how to remove images from PDF by using the PDF. It allows you to edit PDF text, images, object, etc., whether you want to change their positions or just delete them.

Step 1. Open the PDF document from which you want to delete images in Adobe Acrobat

July 12, 2014

How to Add Contact Form to Blogger Page

Step 1: Add contact form gadget

Access your blog Layout. Click on any Add a Gadget link. An Add a Gadget window will be shown, click on More Gadgets, and choose add Contact Form.

On Configure Contact Form Widget window, click Save button.

July 11, 2014

C Program to find ASCII value of a character entered by user

#include <stdio.h>
#include <conio.h>
int main( )
{
char c;
printf("Enter a Character\n");
scanf("%c",&c);
printf("ASCII value of %c=%d",c,c);
        getch ();
return 0;
}

C Program to check Whether a Number is Prime or not

#include <stdio.h>
#include <conio.h>
int main( )
{
int n,c;
printf("Enter a Number\n");
scanf("%d",&n);
if(n==2)
printf("Prime Number\n");
else{
for(c=2;c<=n-1;c++)
{

July 10, 2014

Write a Program to find whether a number is Greater,Equal to or Less then 20

#include <stdio.h>
#include <conio.h>
int main( )
{
 int a;
printf("Enter a number");
        scanf("%d",&a);
if(a<20)
        printf("You have enter less then 20");

Write a Program to check whether a Number is exactly divisible by 3 but not by 5

#include <stdio.h>
#include <conio.h>
int main( )
{
int x;
printf("Enter a number");
scanf("%d",&x);

if(x%3==0 && x%5!=0)
{
printf("%d is exactly divisible by 3 but not by 5",x);

Write a Program to check whether a Number is exactly divisible by 3 or not

#include <stdio.h>
#include <conio.h>
int main( )
{
int x;
printf("Enter a number");
scanf("%d",&x);
if(x%3==0)
{

Write a Program to enter three Numbers and find the greatest one

#include <stdio.h>
#include <conio.h>
int main( )
{
int a,b,c;
printf("Enter the three numbers");
scanf("%d%d%d",&a,&b,&c);
if(a>b && a>c)
{
printf("%d is Gretest among %d,%d,%d",a,a,b,c);

July 9, 2014

Eclipse Programming Software

Eclipse is an extensible development platform with runtimes and application frameworks for building, deploying and managing software across the entire software lifecycle. Many people know Eclipse as a Java IDE, but it is much more than that- Eclipse actually consists of over 60 different open-source projects, organized into 6 different categories:

How to write and print HORIZONTALLY on Microsoft Word


1. Open Microsoft your word Document or write something in word
1. Click the Page Layout tab on the Ribbon (top).
2. Click the Orientation button, then click Landscape.
This will make your layout become landscape and print horizontally.

July 8, 2014

Top 10 most Useful Application for Android Mobiles and Tablets

1.Viber

With Viber, everyone in the world can connect. Freely. More than 200 million Viber users text, call, and send photo and video messages worldwide over Wifi or 3G - for free. Viber Out can be used to make calls to non-Viber mobile and landline numbers at low rates. Viber is available for many smartphones and platforms.
Viber is compatible with and optimized for Android tablets! Use Viber on your tablet and phone simultaneously.

July 5, 2014

Dev C++ Programming Software

Dev-C++ is a full-featured Integrated Development Environment (IDE) for the C/C++ programming language. It uses Mingw port of GCC (GNU Compiler Collection) as it's compiler. Dev-C++ can also be used in combination with Cygwin or any other GCC based compiler.

Turbo C++ Programming Software

Turbo C++ was a C++ compiler and integrated development environment and computer language originally from Borland. Most recently it was distributed by Embarcadero Technologies, which acquired all of Borland's compiler tools with the purchase of its CodeGear division in 2008. The original Turbo C++ product line was put on hold after 1994 and was revived in 2006 as an introductory-level IDE, essentially a stripped-down version of their flagship C++Builder. Turbo C++ 2006 was released on September 5, 2006 and was available in 'Explorer' and 'Professional' editions. 

July 4, 2014

C Programming Examples

Example-1: C program to print Hello World


#include <stdio.h>
#include <conio.h>
int main( )
{
printf("Hello World\n");
getch ( );
return 0;

}

Top Best Free C Programming Software

1. Dev C++
Bloodshed Dev-C++ is a full-featured Integrated Development Environment (IDE) for the C/C++ programming language. It uses Mingw port of GCC (GNU Compiler Collection) as it's compiler. Dev-C++ can also be used in combination with Cygwin or any other GCC based compiler.

Earn Money From Home