Is c++ a dying language?
No Answer is Posted For this Question
Be the First to Post Answer
What are the operators in c++?
You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()
char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?
what is a reference variable in C++?
Will the following program execute?
What is vectorial capacity?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
Who invented turbo c++?
Explain what is polymorphism in c++?
write the prime no program in c++?
What is general format for a prototype?
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