Can a class be static in c++?
No Answer is Posted For this Question
Be the First to Post Answer
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
What is conversion constructor?
What is RTRT tool?can it be used for automation?can it work on packet PC?
Describe about storage allocation and scope of global, extern, static, local and register variables?
What is endl c++?
Can a constructor be private?
What is new in c++?
How to defines the function in c++?
What causes a runtime error c++?
Define vptr.
What are c++ manipulators?
Can a program run without main function?