STATIC DATA MEMBER
As we know Each object of a particular specified class consist of its own data . But if we declared Data item is as static data item then this static data item or we can simply say static variable or static member function will be available for global access...
Showing posts with label Cplusplus Programming Concepts. Show all posts
Showing posts with label Cplusplus Programming Concepts. Show all posts
Friday, 21 February 2014
Tuesday, 20 August 2013
Data Types in C++
C++ Supports a variety of Data types and programmer can select the appropriate type as per the need of application. Data Type is generally tells or specifies the type of data that we are going to store in the variable or Type of value a function will return when called at RunTime...
Wednesday, 19 June 2013
Introduction To C++ Programming Language
C++ is object oriented programming language . But in this we can do Structured Programming also. Initially named "C with Classes" . C++ was developed By Bjarne Stroustrup at Bell-Laboratories in 1980s . Stroustrup take the best feature of simula 67 and C, and designed a language which support object oriented programming featur...
Tuesday, 18 June 2013
Difference Between C programming and C++ programming Language
DIFFERENCE BETWEEN PROCEDURAL AND OBJECT ORIENTED PROGRAMMING
1. C Follows Procedural Programming Approach . It is also called
Structured programming approach. In Structured programming approach
the program has well defined structure...
Thursday, 11 April 2013
Cplusplus program without Main Function
#include<iostream.h>
#include<conio.h>
#define
decode(s,t,u,m,p,e,d) m##s##u#...
Monday, 17 December 2012
LINKER ERROR IN C++
LINKER ERROR came in c++ will come if your linker is not provided with correct path to libraries means to tell the compiler where to look for libraries...
Subscribe to:
Posts (Atom)
Followers
Popular Posts
-
Sqlite Database is the best way of providing portability...
-
Necessity is the advent of everything today while doing...
-
Quick Sort is a Sorting Algorithm based on Divide And...