41.4 C
Delhi
Tuesday, May 13, 2025
Home Blog Page 19

Arrays In C/C++ And Their use

0
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

0
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...
buffercode_python

Python: Matplotlib Plotting Cookbook

1
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

0
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

Exception Handling in Python

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

0
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

0
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-if-else-break

Statements-2(nested if-else and break statements)

0
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 giveaway by buffercode

IDM : The Best Download Manager

0
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...
if-else decision control

SELECTION STATEMENT: IF-ELSE STATEMENT

0
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...
Python Modules

Creating Python Modules: Easy way

0
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...
The Loop Control structure

Types of Loop Control structure C++

2
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...
dsploit top penetration testing application for android mobiles

Top Penetration Testing Application for Android Mobiles

0
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...
Thrill giveaway

Buffercode brings THRILL give away – Participate to win vip access code

3
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...
Tor

How to surf web anonymously ??

1
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...
An application to send Encrypted message

How to send encrypted message using softwares or applications??

1
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...
C Operators

Operators in C /C++ programming & Their Use

0
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...
Custom Exception In Java

C++ Data type and Variable

0
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

0
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...
Custom Exception In Java

Creating Custom Exception – Java

0
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 set java path environment

0
Setting java path environment variable in windows

How to install Java

0
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...
encryption and decryption

What is Encryption and Decryption , and how it make our message anonymous??

0
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...
MULTIPLE CATCH BLOCK AND FINALLY BLOCKS IN JAVA

HOw To Use Multiple Catch And Finally Blocks in Java

0
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

0
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...
code for Using Namespace in C++

Using Namespace in C++

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