What is the best book for c++ beginners?
No Answer is Posted For this Question
Be the First to Post Answer
Is there any difference between dlearations int* x and int *x? If so tell me the difference?
Explain dangling pointer.
What is the latest c++ version?
What is the auto keyword good for in c++?
What is object in c++ wikipedia?
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
char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?
Will a C compiler always compile C++ code a) Yes b) No c) Only optimized compilers
Tell me an example where stacks are useful?
What does new in c++ do?
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?