Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
What are proxy objects in c++?
Is there any difference between int [] a and int a [] in c++?
What character terminates all character array strings a) b) . c) END
Is oops and c++ same?
Why c++ is so important?
write a programme to get a character and thier ASCII value
What flag means?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
When do we run a shell in the unix system? How will you tell which shell you are running?
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
Comment on assignment operator in c++.
Why do we use using namespace std in c++?