What do you mean by funtion prototype?
No Answer is Posted For this Question
Be the First to Post Answer
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
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 is the precedence when there is a global variable and a local variable in the program with the same name?
Write a function to find the nth item from the end of a linked list in a single pass.
What are the rules about using an underscore in a c++ identifier?
What is new in c++?
Why pointer is used in c++?
Explain the advantages of using friend classes.
Which of the following is evaluated first: a) && b) || c) !
Does c++ support exception handling?
What is encapsulation in c++ with example?
What is a reference in C++?