Visual Basic Programming Code Examples
Visual Basic > Internet Web Mail Stuff Code Examples
Deleting the 'New Mail Icon' from outlook
The C++ language Check Leap Year or Not -
To check whether the input year is a leap year or not a "leap year" in C++ Programming, you have to enter the year and start checking for the leap year. To check that the year is a leap
Cube Root of a Number in C++ Language -
To find 'cube root of any number' we need to find 0.3 power of any number. if you need to find cube root of 27 then calculate 0.3 power of 27, result is 3. So another method for this
C Code Find LCM of Number by Recursion -
C Language program Find 'LCM' of a Number using Recursion. The following C Program to use recursion, finds the 'LCM'. An 'LCM' is the 'Lowest Common Multiple' of any 2 numbers.
Cryptography by Transposition Technique -
This "C++" Program implement transposition technique. In "Cryptography", a transposition cipher is a method of encryption by which the positions held by units of plaintext (which are
Reading From and Writing to a File in C++ -
While writing C++, coders write information to a file from the program using the "stream" insertion operator (<<) and reads information using the "Stream Extraction" Operator (>>).
C++ Program Reverse an Integer Number -
This takes an integer input from the user and stores it in 'variable n'. Then the while loop is iterated until n != 0 is false. In each iteration, the remainder when the value of n is divided
C++ Code to List Files in Current Directory -
To list and "display/print" all the files present inside the current directory in The C++, use a pointer say dir of DIR and the pointer say pdir of dirent to open and "read directory" to print
Code Shows a Client Server in C language -
Message queue program that shows a client server implementation this is the reciever program using Message Queues. Let us set up the message queue. Then the messages...