What are the four partitions in which c++ compiler divides the ram?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is the best way to declare and define global variables?

0 Answers  


What is the basic concept of c++?

0 Answers  


how to access grid view row?

0 Answers  


Does there exist any way to make the command line arguments available to other functions without passing them as arguments to the function?

0 Answers  


Array base access faster or pointer base access is faster?

0 Answers  






Why null pointer is used?

0 Answers  


What is the identity function in c++? How is it useful?

0 Answers  


What can I use instead of namespace std?

0 Answers  


What is endl c++?

0 Answers  


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

1 Answers   Reliance,


Do class declarations end with a semicolon? Do class method definitions?

0 Answers  


Can you explicitly call a destructor on a local variable?

0 Answers  


Categories