|
Technical Interview Questions
Visual Basic Interview Question
ASP .NET Interview Questions
C++ Interview Questions
C
Interview Questions
.........More
Programming Source Codes
C/C++ Source Codes
C# Source Codes
.........More
Aptitude Interview Questions
C/C++ Aptitude Questions
C Aptitude Questions
.........More
Tutorials
C Tutorial
C++ Tutorial
.........More
Soft Skills
Communication Skills
Leadership Skills
.........More
|
|
C/C++ Source Codes
class variable can also be
CONSTANT
//A class variable can also be CONSTANT. That's just like static,
//except it is allocated a value inside the class declaration and
//that value may not be modified :
#include <iostream.h>
class vector
{
public:
double x;
double y;
const double pi = 3.1415927;
vector (double a = 0, double b = 0)
{
x = a;
y = b;
}
double cilinder_volume ()
{
return x * x / 4 * pi * y;
40 of 56 12.03.99 01:19
C++ Tutorial file:///C'/Eigene Dateien/Manualz/not added/C++ Tutorial for C
Users/cppcen.htm
}
};
void main(void)
{
cout << "The value of pi : " << vector::pi << endl << endl;
vector k (3, 4);
cout << "Result : " << k.cilinder_volume() << endl;
}
<<<----- Return to
C/C++ Source Code Questions Page.
Have a Question ?
post your questions here. It
will be answered as soon as possible.
Check
Object Oriented Interview
Questions for more Object Oriented Interview Questions with answers
Check
Data Structure
Interview Questions for more data structure interview questions with
answers
|