what is a reference variable in C++?
No Answer is Posted For this Question
Be the First to Post Answer
What is a responder chain?
What does ios :: app do in c++?
What is object in c++ wikipedia?
Write a Program for read a line from file from location N1 to N2 using command line arguments. Eg:exe 10 20 a.c
What are arithmetic operators?
What is the use of this pointer in c++?
Which operator cannot overload?
What is the basic of c++?
Explain about Virtual Function in C++?
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?
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
By using c++ with an example describe linked list?