Can we use this pointer inside static member function?
No Answer is Posted For this Question
Be the First to Post Answer
Which programming language should I learn first?
What is a custom exception?
Are strings mutable in c++?
Difference between an inspector and a mutator
What is protected inheritance?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
Can a program run without main?
What is an opaque pointer?
What is a tuple c++?
What is malloc in c++?
given the code segment below void main() { cout<<"my no. is"; } question is how can we get the output hai aravind my no. is 99999999999 without editig the main().
What is the difference between public, private, and protected access?