How would perform Pattern Matching in C++?
No Answer is Posted For this Question
Be the First to Post Answer
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 the advantages of pointers?
What is a pointer with example?
What can I safely assume about the initial values of variables which are not explicitly initialized?
write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
What is a far pointer? where we use it?
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
What is runtime errors c++?
Is map sorted c++?
What is function prototyping? What are its advantages?
What are the comments in c++?