Ad

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.

Sunday, September 15, 2013

Free Virus Scanner -- Antivirus Software

Is your Computer infected ? HouseCall software can quickly identify and fix a wide range of threats including viruses, worms, Trojans, and spyware. Includes: The software is included Full scan, Custom scan and Quick scan option, Support for 64-bit, Windows 7, Windows 7 SP1, and Windows 8.  It is a popular and effective software for identifying and removing viruses, trojans, worms, unwanted browser plugins, and other malware software. What's new in HouseCall? Full system and custom scan options are available. So, users can easily specify...

Making a Virus by Using Notepad or other Text Editor

Disable Keyboard by Batch File Programming  What is Batch File Programming ?           Batch file programming is the native programming offered by the Microsoft Windows OperatingSystem. Batch file is created using any text editors like notepad, WordPad, WinWord or so on, whichcomprises of a sequence of built-in commands used to perform some often done tasks like deleting aseries of files of same type or of different type, creating logs, clearing unwanted craps from yourcomputer and even for...

Wednesday, September 4, 2013

Uva 11530 - SMS Typing

SMS Typing in Uva is a string related problem. Before writing the code you should know about string. Let's see What is string ? string : string in C Programming Language is actually a one-dimensional array of characters which is terminated by a null character '\0'. The following declaration and initialization create a string consisting of the word "Hello". To hold the null character at the end of the array, the size of the character array containing the string is one more than the number of characters in the word "Hello"...

Wednesday, August 21, 2013

Prime Numbers by Sieve Algorithm

Check whether the sum of all printed prime numbers are equal to the given input or not ? Sample Input: 5 Sample Output: Prime list: 1, 2, 3, 5, The sum is:11 The sum is not equal to 5 Source Code: #include<stdio.h>#include<math.h&g...

Making Pattern by C Program

****** ***** **** *** ** * ** *** **** ***** ****** 1 12 123 1234 12345 123456 12345 1234 123 12 1 Source Code :    #include<stdio.h>int main(){    int i,...

Tuesday, August 20, 2013

Drawing Face by using Java Applet

import java.awt.*;import javax.swing.*;public class Face extends JApplet{    public void paint(Graphics g)   ...

Insertion Sort

Insertion Sort by using C Program #include<stdio.h> int main(){  int i, j, s, temp, a[100];  printf("Enter total elements: ");  scanf("%d",&...

Monday, August 19, 2013

Coin Distribution Problem

Coin Distribution by Using C Program           Problem:- Suppose, You have 100 coins which need to be distributed among 3 beggars A, B, C. In how many ways can you distribute these 100 coins among the 3 beggars ? Constraint: A cannot have more than 75 coins, B cannot have more than 50 coins, and C cannot have more than 25 coins.  We can solve this problem by writing a simple code in C. The code is here.............   Solution:- #include<stdio.h&g...

Thursday, July 25, 2013

Get IP Address of a Computer by C Program

IP address of a computer can be shown by using C program. It easier than other methods. Let's use it....... #include<stdlib.h&...

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 righ...

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...

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     {    ...

Tuesday, July 16, 2013

Fibonacci Sequence in C by using Recursion

A few days ago, I posted the code of Fibonacci Sequence in C by using loop. The following code is written by using Recursion. To get the basic concept about Fibonacci Sequence you can read my previous post. 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

 Now multiplication of two matrices(matrix) is so easy if use a C program. It is very easy to write and understand. In this we use 2d array. To understand this code you must have a basic knowledge about 2 dimensional array. So, let's try...........  #include<stdio.h> int main() {   int a[5][5],b[5][5],c[5][5],i,j,k,sum=0,m,n,o,p;   printf("\nEnter the row and column of first matrix: ");   scanf("%d %d",&m,&...

Thursday, March 21, 2013

Uva 11479 - Is this the easiest problem ?, programing from Uva

Problem ID - 11479, Problem Name - Is this the easiest problem ? Read the Problem Description #include <stdio.h>int main(){    signed long int a, b, c;    int test_case, i...

Uva 11936 - The Lazy Lumberjacks, programing problem from Uva

Problem ID - 11936, Problem Name - The Lazy Lumberjacks   Problem Description is Here     #include <stdio.h> int main() {     int a, b, c, i, k, j,...

Sunday, March 17, 2013

Uva 10370 - Above Average, easy programing problem from Uva

Problem ID - 10370, Problem Name - Above Average Problem Description is Here #include<stdio.h> main() {     int test, n, i, stud[1000];     float sum, ave, count, percent;     char ch='%'...

Saturday, March 16, 2013

Uva 10035 - Primary Arithmetic, so easy than other programing problem

Problem ID - 10035, Problem Name - Primary Arithmetic. Problem Description is Here #include<stdio.h> main() {     unsigned long int num1, num2, temp1, temp2;     int carry, r...

Friday, March 15, 2013

Fibonacci Sequence in C

Fibonacci Sequence in C The Fibonacci Sequence is the series of numbers: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ............. The next number is found by adding up the two numbers before it. The 2 is found by adding the two numbers before it (1+1) Similarly, the 3 is found by adding the two numbers before it (1+2), And the 5 is (2+3), and so on! Example: the next number in the sequence above would be 21+34 = 5...

Uva 11172 - Relational Operators

This is a problem from UVa Online Judge. Problem ID - 11172, Problem Name - Relational Operators. http://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=2113 #include <stdio.h> main()...

Binary Search

Searching is very important in data structure. Here is the code of Binary Search....... #include <stdio.h>  int main()  {      int ara[16] ={1, 4, 6, 8, 9, 11, 14, 15, 20, 25, 33, 83, 87, 97, 99, 100},      int low = 0,high = 15, mid, num = 1...

Wednesday, March 13, 2013

Make a pattern of Pyramid by using C programming...

We can make different pattern by using c programming. Here is a code of pyramid pattern............. #include <stdio.h> int main() {     int i,j,k,l,m;     scanf("%d",&i...

Friday, February 22, 2013

Reverse a String by using Recursion......

Assalamu Alaikum.... How are you, everyone ? Today I will show how to reverse a string by using recursion in C programmimg. To understand  this program you must have a  little bit knowledge about stack. So, let's start.......... #include<stdio.h> #include<conio.h&g...

Wednesday, February 20, 2013

Shut down the PC by using C

Now you can shut down your pc by a C code. It is nothing but a simple code. So, let's see.......... #include<stdio.h> #include<stdlib.h&g...

Age Calculator by using C program

Assalamu Alaikum, how are you everyone ? Hope all are well. I'm back here again. Today I'm introducing a useful program. The task of this program is to calculate age from a date to another date. Hope, it would be helpful for new programmers.. Let's see.................. #include<stdio.h> main...