How to defines the function in c++?


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

Post New Answer

More C++ General Interview Questions

Define the process of error-handling in case of constructor failure?

0 Answers  


What is a syntax in c++?

0 Answers  


Discuss the possibilities related to the termination of a program before entering the mainq method?

0 Answers  


What is the output of the following 3D Array int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}; what is the output for arr[2][1][0]?

6 Answers   HCL, Integra, IPMC, ORG,


What are pointer-to-members in C++? Give their syntax.

0 Answers   HAL,






Name the implicit member functions of a class.

0 Answers  


What is a linked list in c++?

0 Answers  


What do you mean by translation unit?

0 Answers  


Describe friend function & its advantages.

0 Answers   TCS,


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,


Can you think of a situation where your program would crash without reaching the breakball, which you set at the beginning of main()?

1 Answers  


Is string data type in c++?

0 Answers  


Categories