How to use long long data type in C?
In order of size, starting with the smallest, the integer types are char, short,int, long and long long. The smaller types have the advantage of taking up less memory,...
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...
How to use Debugger tool objdump in Linux
Debugger Tool Objdump in Linux
Debugger Tool objdump: C feel more familiar and C compiler exist in every operating system .Basically Linux is a free operating system that every has...
C First Program
Let’s start our C First Program through telling you basics about C language. Each and every coding line has its meaning and significance this tutorial will tell you about...
How to use file input/output
File Input/Output
Why we need file input/output programming?
As we know it is not enough to just display the data on screen because if data is large ,only a limited amount...
Program to Implement Stacks using structures in C/C++ Programming
In previous post Stacks in programming and Basic Exploits : Stack Operations, we explained the functioning of stacks. Later our users ask for its code in C Programming. In...
Facebook verification page has bug found by team Buffercode
Note: I already send report for this bug , I hope Team Facebook will change their algorithm for this page.
New Bug has found by team Buffercode in Facebook
It's always...
Java First Applet Program
Java Applets
Hello friends today we learn to make Java First Applet Program or the concept of applet programming. Applet are small program that run in web browser or applet are...
Explore into the Metasploit ( a Ultimate Hackers Tool)
Metasploit is a complete and a Ultimate Security tool that provides information about Computer Security Vulnerabilities and also use in penetration testing .It was develop by HD Moore in...
Reading Bytes From File Using Java
Hello friends Today We discuss the concept of reading bytes from file using java codes. The reading bytes from file using java is done by using FileInputStream which make...
How has open source changed the way students learn new technology
Open-Source Software (OSS):
is computer...
Ruby On Rails Tutorials : MVC (Model View Controller)
Pr-request for Ruby On Rails Tutorials : Use MVC (Model View Controller)
Read our previous post Ruby On Rails Tutorials : Creating new project in Rails
In our previous post we...
Python Data types Tuples ,Sets, Dictionaries
Data types Tuples ,Sets, Dictionaries :
In python data types sets ,Dictionaries and Tuples are easy to implement and and many of predefined function and modules are support them.
hello friend...
Reverse String in c++ using sstream
One of good question can be asked about string is How to Reverse String ?
You can do in many ways but I am going to show you , the...
Basic Linux Exploits:Make your Pc more secure
Basic Linux Exploits:Make your Pc more secure and learn the basics of computer world
Why study Exploits?
Before learning exploits ,one should know about vulnerability.What does it means in the world...
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...
Ruby Tutorial : Step By Step Learning Ruby Programming Language
Prerequisites for Ruby Tutorial:
Install Ruby – Here you will found How to install Ruby?
Ruby is a scripting language designed by Yukihiro Matsumoto(Matz). In my previous article Why Rails ? ,...
Strings:Strings and their use in C programming
Strings are the set of character stored in a character array likewise we store group of integers in int array. Strings are one of the most important and wide...
Class and Objects using Python
Python Class:
Python is a pure Object Oriented Programming language because in Python even data members like "a" are treated as a object ,while all variables are references of their classes...
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...
File Handling in java
File Handling in java programming:
File handling in java or in any programming language is a very important concept. In java
File handling in java is done by input and output stream these Input...
Getting Started:C Data Types and Constants
At primary stage C data types are divided into 3 categories : integer ,character and real. Let us explore these data types.
//
Integer :
It's simple to understand that...
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...
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...
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...
My first c++ program
Hello friends, today I am gonna tell you how to make first c++ program !!!
Before start learning first c++ program??
Make sure you should have install either gcc or visual studio ....