Archive for October 2014
Fundamental data types, variable and variable scope.
VARIABLE
When we want to use any value or data in our program we want to save it in our memory so that it can be used again and again. For that purpose we store it in a variable. Variable is the actually the address of a particular memory where we.
Lets Get Started with programming.
Writing your
first program in C/C++
According to me programming is not something to learn it
comes to you automatically by practicing. Writing program is more affectionate
in this respect then becoming bookish.
So here is your first program to.
Difference between post increment, decrement and pre increment,decrement
Most of the new programmers are stuck between post and pre increment.
What is the difference between ++a and a++. This post will clear your confusion.
++a is a pre increment type in which first of all 1 is added in a and then its value is considered.
Sunday, 12 October 2014
Posted by Unknown
What is Data hierarchy

Data hierarchy
Data hierarchy is the step by step representation of complex
data in different level starting from basic bits to highest level files.
We will discuss in this post how this hierarchy is formed.
Suppose we have a excel
file.
what is object oriented programming?

Introduction to
object oriented programming.
Basically all the programming languages are of two types
either:
·
Structured Oriented or
·
Object Oriented.
Today.
Making a boundary of rectangle. square in C++

Creating a hollow square or rectangle in C++
// a rectangle boundry by asteriks
//including header files
#include<iostream>
#include<conio.h>
//including directives of iostream
using std::cout; //see.
Saturday, 4 October 2014
Posted by Unknown
Tag :
c++,
code,
coding,
Creating,
drawing,
making,
project c++(basic),
rectanagle,
square,
tutorial