Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

How to copy text to Clipboard using jQuery

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

How to Create Real Time Changing Clock

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

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 in C

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

Pure virtual function in C++

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

SWITCH STATEMENT IN C

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

Install Internet Information Services (IIS) 7.0

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

Normalization

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

program to find out generic root of any number on C language

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

How to convert string to int without using library functions in c

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

1 69 320
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: