Learn how to shutdown or lock userr computer via email, Internet or SMS text messages from the mobile phone. You can take screenshots, terminate process...
Pages
Wednesday, April 16, 2014
Tuesday, April 15, 2014
Nokia Twist 7705 Review

Whats hot: Head turning design. Cool Habitat mode.Whats not: Must twist open the phone to answer a call (unless youre using a headset).CheckedSeptember...
Monday, April 14, 2014
Bubble sort algorithm with time complexity calculation
//Bubble sort algorithm implementation. Also calculate time complexity.#include<stdio.h>#include<conio.h>void main(){ int a[100],temp,i,j,n,count; count=0;count++; printf("Bubble...
Labels:
algorithm,
bubble,
calculation,
complexity,
sort,
time,
with
Sunday, April 13, 2014
Telecommuting With Voip Phone Systems For Business Austin
By Nelda Powers There are many reasons why many individuals seek to make use of phone systems for business Austin. Hence many people are wondering how...
Factors To Consider When Choosing The Finest PC Service Atlanta
By Jeannie Chapman In this modern era, computers are virtually as important as any other gadget. Most people use them to save critical information....
Saturday, April 12, 2014
Using Virtual Base Classes to Avoid Ambiguity
Let’s start this with the following example program: // this program contains errors #include<iostream.h> // base class class base { public:...
Friday, April 11, 2014
C program to find Fibonacci Series with understanding logic
Fibonacci Series or SequenceThe Fibonacci numbers or Fibonacci series or Fibonacci sequence has first two numbers equal to 1 and 0 and the further each...
Support for CSS class tags
In an earlier post I described how Run BASIC can use the DIV and CSS statements to style a web page. That works well for styling the different parts of...
Thursday, April 10, 2014
How Can A Free Reverse Cell Phone Number Look Up Benefit You
By Cedric Bartoo Periodically a download of charge reverse cell look up service can benefit you. As an example, you might be in the middle of a critical...
Wednesday, April 9, 2014
Buying Car Laptop Desks At Pro Desks American Stores
By Merv Carlson Thanks to technology improvements such as laptops, peoples work and study are becoming simpler. In recent times, any time coming to...
How Top Rated St Petersburg Marinas Provide Winterization Solutions For Boat Owners
By Jessie Drolet Sailing is truly a fun-filled pastime. It is a great enjoyment you can have with friends and family. It is a great way to enjoy the...
Tuesday, April 8, 2014
Read and print string

Q. Write a simple C program to accept your name and print it.Ans./*c program to introduction of string*//*c program to accept your name and print it*/#include<stdio.h>#include<conio.h>int...
A Simple Pong Game using JavaScript

Having the knowledge of moving images using JavaScript, we’ll be creating a small Ping Pong game as an example for this post.Today we’ll learn to do...
Sunday, April 6, 2014
C PUZZLE
21) void main(){char ch;for(ch=0;ch<=127;ch++)printf(“%c %d “, ch, ch);}Answer: ...