Dhruv
Appearance
Dhruv is a Sanskrit word meaning firm or unshakeable. It is alternatively spelled as Dhruva and commonly refers to:
- Dhruva, a devotee of Vishnu who later became the pole star in Hindu mythology
Dhruv may also refer to:
Military
- HAL Dhruv, a multi-role helicopter developed and manufactured by India's Hindustan Aeronautics Limited
- INS Dhruv, a missile range instrumentation ship of the Indian Navy
Entertainment
- Dhruv Tara – Samay Sadi Se Pare, Indian drama television series
- Dhruva (2016 film), an Indian film
People
- Dhruv (singer) (born 1999), British singer-songwriter
- Dhruv Jurel (born 2001), Indian cricketer
- Dhruv Pandove (1974–1992), Indian cricketer
- Dhruv Rathee (born 1994), Indian YouTuber
- Dhruv Sehgal (born 1990), Indian actor
- Dhruv Sharma (1982–2017), Indian actor and cricketer
- Dhruv Vikram (born 1997), Indian actor
- Anandshankar Dhruv (1869–1942), Indian writer
See also
- include <iostream>
class A { private:
int b;
public:
int a; protected: int c;
A(int a, int b, int c) : a(a), b(b), c(c) {}
void showA() { std::cout << "b :" << b << std::endl; }
};
class B : public A { public:
B(int a, int b, int c) : A(a, b, c) {}
void showB() { showA(); std::cout << "a :" << a << std::endl << "c :" << c << std::endl; }
};
class C : public B { public:
C(int a, int b, int c) : B(a, b, c) {}
};
int main() {
C obj(10, 20, 30); obj.showB(); return 0;
}