Can we use pointers in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Can malloc be used in c++?
What is problem with Runtime type identification?
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 the function of the keyword ‘volatile’ in C++?
Where is atoi defined?
What is c++ stringstream?
Difference between linked list and array?
How do you flush std cout?
What are compilers in c++?
Describe the syntax of single inheritance in C++?
What is OOPs
What are the two types of comments?