
Search In
Hello Readers,
I will show you how to copy text in clipboard without using ctrl+c.
<html>
<head>
<script type="text/javascript" src="jquery-1.8.0.min.js"></script>
<script src="jquery.zclip.js"></script>
<
With the help of javascript we can create changing clock time function. In the example given below I am using setTimeout function (changed other value) when clock refresh it will show the exact time once in every seconds.
<html>
<head>
&
Command Line Argument
1.Command line argument is a parameter supplied to the program when it is invoked.
2.Command line argument is an important concept in C programming.
3.It is mostly used when you need to control your program from outside.
For Loop: allow us to efficiently write a loop that needs to be executed specific number of times.
Syntax:
for(init statement; test expression; increment)
{
code(s) to be executed;
}
The init statement allow us to
initialize any loop co
In C++, Pure virtual method or pure virtual function is a virtual function in which virtual function does not contain a definition inside the function declaration. A pure virtual function/method is declared by assigning a function equal to 0 in decla
A Switch is a control statement that allows value to change control of execution.
These are the fact about the switch statement.
Switch case statement expressions must be of integral type (int,char and enum). Any other type of expressions used in s
Applies to these editions of Windows/Vista
Home Premium
Business
Ultimate
Enterprise
*To install IIS with default settings*
First Click the Start button, then click Control Panel, then click Programs, and finally click Turn Windows features on
Database Normalization
Normalization is a technique of managing records in a database. It is an approach to eliminate data redundancy and anamolies . It also removes data duplicacy in a record. It helps in data update,delete and insert anamolies.Wi
generic root means:
in this we do addition of a given number until reached a single digit after addition . For example:
Generic root of 784: 7 + 8 + 4 = 19 since 19 is a two digit numbers so 1 + 9 = 10.then again add 1 +0=1
So, generic r
here we are converting string values to the integer without using library functions.
#include
int stringToInt(char[] );
int main(){
char str[10];
int intValue;
printf("Enter any integer as a string: ");
s
