Show the declaration for a static function pointer.
No Answer is Posted For this Question
Be the First to Post Answer
What is setfill c++?
Explain 'this' pointer and what would happen if a pointer is deleted twice?
Explain the uses oof nested class?
i want to know how to copy arrary without using any method or function. I have tried the below using System; class e4 { static void Main(string[] args) { int a,b; int[ ] m= new int[5]; int[ ] n= new int[5]; for(a=0;a<=4;a++) { Console.WriteLine("enter any value"); m[a]=Convert.ToInt32(Console.ReadLine()); m[a]=n[a]; } for(b=0;b<=4;b++) { Console.WriteLine(n[b]); } } } but it will give wrong result can anyone solve this problem
By using c++ with an example describe linked list?
What are the basics of classifying different storage types, why?
2 Answers Astergate, Symphony,
Why is it called c++?
Is c++ a high level language?
What are the basic data types used in c++?
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];
What is ofstream c++?
Describe friend function & its advantages.