This is default featured slide 1 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured slide 2 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured slide 3 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured slide 4 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured slide 5 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Thursday, July 25, 2013
Conversion from Binary to Decimal
Sometimes we need to convert a binary number into decimal number. The following code will help to convert a number from binary to decimal. Let's see and use it.................
#include <stdio.h>#include <string.h>
#include <math.h>
int main()
{
Thursday, July 18, 2013
Windows 7 Shortcut Keys
computer tips for windows 7 shortcuts
Most of us are using windows 7 but few of them know windows 7 shortcut keys, so its good to know some short keys.
Windows 7 shortcuts keys
WIN +UP arrow Maximize Window
WIN +DOWN arrow Restore or Minimize Windows
WIN +LEFT arrow Snap window to left
WIN +RIGHT arrow Snap window to right
Mozilla Firefox Shortcut Keys
Mozilla Firefox is taking the place of IE. It is getting popularity because of its functionality and user friendly options. Most of us are using Mozilla firefox for specific purpose and they waste so much time while browsing because they don't know the shortcut keys for Mozilla Firefox. You can save time by using these shortcut keys.
Here is a shortlist of Mozilla Firefox short keys:
- CTRL+A Selects the all items on active page
- CTRL+B Display the "Organize Bookmarks" dialog box
- F5 Refresh the active web page
- F7 activate the cursor to move with keyboard
Reverse a Number and Calculate the Sum of all Digits in Java
Today, we will see how to reverse a number and calculate the sum of all digits. It is a faster way to reverse a number. Because we will use string in this code. So, let's see how it is.............
import java.util.Scanner; //import a package to take input from keyboard
public class ReverseNumberByString //main class
{
public static void main(String[] args) //main method
{
Scanner input = new Scanner(System.in); //create an object of type of Scanner
Tuesday, July 16, 2013
Fibonacci Sequence in C by using Recursion
Previous Post
Let's see the code of Fibonacci Sequence by using recursion...............
Saturday, July 13, 2013
Multiplication of Two Matrices (matrix) by C Program