What is implicit pointer in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?
What is the difference between strcpy() and strncpy()?
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
Explain operator overloading.
On throwing an exception by the animal constructor in p = new animalq, can memory leak occur?
Given an array of size N in which every number is between 1 and N, determine if there are any duplicates in it. You are allowed to destroy the array if you like. [ I ended up giving about 4 or 5 different solutions for this, each supposedly better than the others ].
Which sort does c++ use?
What are the various arithmetic operators in c++?
Write a single instruction that will store an EVEN random integer between 54 and 212 inclusive in the variable myran. (NOTE only generate EVEN random numbers)
What is problem with overriding functions?
What is endl?
Is c++ high level programming language?