What is scope resolution operator in c++ with example?
No Answer is Posted For this Question
Be the First to Post Answer
Can we use resume in error handling i.e. in the catch block
What is c++ similar to?
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
What are structs in c++?
can output 5 students using one dimensional array
What is auto used for in c++?
What is a Default constructor?
Are vectors passed by reference c++?
What are the difference between reference variables and pointers in C++?
What is the difference between the parameter to a template and the parameter to a function?
What are the five types of inheritance in C++?
Which bit wise operator is suitable for turning off a particular bit in a number?