What are punctuators in c++?
No Answer is Posted For this Question
Be the First to Post Answer
How do we implement inheritance in c++?
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
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
Write a function to find the nth item from the end of a linked list in a single pass.
What is a forward referencing and when should it be used?
What are arithmetic operators?
What is c++ iterator?
How can we access protected and private members of a class?
What is late binding c++?
What is a list c++?
Why is it necessary to use a reference in the argument to the copy constructor?
What is the difference between a declaration and a definition?