What is a c++ class?
No Answer is Posted For this Question
Be the First to Post Answer
Why do C++ compilers need name mangling?
What is the difference between delegation and implemented-in-terms-of?
What are manipulators in c++ with example?
How can we read/write Structures from/to data files?
Why do we use templates?
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
Have you used MSVC? What do you think of it?
given unsigned int ui1=3,ui2=7; what are the outputs of a)ui1 & ui2 b)ui1 && ui2 c)ui1 | ui2 d)ui1 || ui2 i also need the justification for the answers thank you
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Discuss the possibilities related to the termination of a program before entering the mainq method?
Please post the model question paper of hal?
What is function prototyping?