What are the manipulators in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What are the four partitions in which c++ compiler divides the ram?
What is endl?
Why do we need c++?
What is the difference between const and constexpr?
What is a storage class? Mention the storage classes in c++.
why is iostream::eof inside a loop condition considered wrong?
Write a C++ Program to Multiply two Numbers
Explain the purpose of the keyword volatile.
What are the implicit member functions of class?
class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4
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
give me some class & objects examples?