Arrays In C/C++ And Their use
Arrays are the collection of fixed size , same type of elements in a sequential order. These elements are basically variables of same data type . They can be...
Function-2
Now lets continue from where we left off our topic "function ". In this post we are going to discuss about types of functions .
TYPES OF FUNCTIONS
Now there are...
Python: Matplotlib Plotting Cookbook
Who this book is for??
There may be question in your mind that who this book is for?? so below is it's answer for you:
If you are an engineer or...
Function In C/C++ Programming
Functions as the name suggest "to do some task " . Similarly in c/c++ ,functions are group of some codes that together performs a certain task. Every C/C++ program...
Exception Handling in Python
Exception Handling in Python
Exception Basics
Exception : Nothing but an event that are modify the flow of event or a flow of control in a program . In python or...
Statements-4(SELECTION STATEMENT:SWITCH STATEMENT)
Lets continue with the statements .......
SELECTION STATEMENT:SWITCH STATEMENT
These are similar to multiple if -else statement but its more easy to understand and it doesnot create any confusion for the...
C-Programming Statements: continue and goto statements
Lets continue with the statements ....
Continue statement
Continue statement leads to the end of the current iteration and leads to the new iteration. It allows the compiler to reach the...
Statements-2(nested if-else and break statements)
Let's continue the statements .........
NESTED IF-ELSE
Here under an if statement we can use many more if statements
SYNTAX:
if(condition )//start of 1st if
{-------------
if (condition ) //start of 2nd...
IDM : The Best Download Manager
IDM(Internet Download Manager)
There is no need to mention that IDM(internet download manager) is the best and our favourite download manager . It comes with the many useful features like :It...
SELECTION STATEMENT: IF-ELSE STATEMENT
SELECTION STATEMENT: IF-ELSE STATEMENT
The if keyword is used to execute the statements/ block of statements . If the condition is true then those statements will be executed else the...
Creating Python Modules: Easy way
Creating Python Modules: with Simple Steps
In Python we look at modules ,Module are very simply to put and Module is allows to better organizing the code or pretty much...
Types of Loop Control structure C++
Types of Loop Control structure C++
Loops are basically certain conditions that repeats certain steps until the condition becomes false , i.e a loop will continue to go on until...
Top Penetration Testing Application for Android Mobiles
Android is a Linux based small operating which runs on mobile. Most of the user in the world are using Android because of its large application in play or...
Buffercode brings THRILL give away – Participate to win vip access code
Hello Friends
THRILL an new and awesome application for Android and iphone users to meet with new friends. We are thankful to Thrill community for giving us the opportunity to...
How to surf web anonymously ??
Continue with our previous post How to surf web anonymously ......
Today i am going to tell you one of the best solution to surf web anonymously...
In my personal point...
How to send encrypted message using softwares or applications??
How to Send Encrypted Message??
In our previous post Encryption and Decryption ,we told you the meaning and need of encryption and decryption. After that you may want to know...
Operators in C /C++ programming & Their Use
An Operator is a symbol that tells compiler to perform certain mathematical or logical operations. Operators are usually same in all programming language like c/c++ , java , python etc.
Built-in...
C++ Data type and Variable
In our first program , we saw how to print something . But thats not it , programming doesnt stick only to printing few text !!! Lets take an...
How to write c++ comments
What are comments in c++??
Comments are generally those line which will not compile and use for remember the aim/purpose of code.
Why to write comments??
Comments written in any programming language...
Creating Custom Exception – Java
Create Custom Exception In Java
Friends today we are discussing about the concept of creating custom exception in java programming. Exceptions are undesirable interrupt which are come in between the...
How to install Java
Install Java in PC
JDK7 Installation video tutorial
For the sake of your ease ,we provide this video tutorial so that you can easily install jdk7 in your pc.
If you still...
What is Encryption and Decryption , and how it make our message anonymous??
Friends in our previous post How to surf internet Anonymously we tell you why to surf internet anonymously and number of ways to do that. Our aim is to make...
HOw To Use Multiple Catch And Finally Blocks in Java
MULTIPLE CATCH BLOCK AND FINALLY BLOCKS IN JAVA
Multiple Catch:
Hello Friends, Today we learn about the concept of multiple catch block.T he concept of Multiple Catch And Finally Blocks is use...
Defining Functions in python
Before you start
you must see our previous post My first C++ program
Functions :
Before learning defining functions you must know what is the meaning of functions in programming languages.
What is the meaning...
Using Namespace in C++
Before you start
you must see our previous post My first C++ program
Start Learning about Namespace:
In c++ , when a variable function or class is used in a particular scope...