Why are arrays usually processed with for loop?
No Answer is Posted For this Question
Be the First to Post Answer
char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?
What are the basic data types used in c++?
Must accepts "Maestro Cards" Tax for bike should be less than 15 Total number of lanes is more than 10 Must provides monthly pass Write a method: boolean isGoodTollBridge(String[] cardsAccepted, String[] tollTax, boolean hasMonthlyPass, int numberOfLanes); String[] cardsAccepted A String array of names of card types accepted for payment of toll tax, it can be null if the toll does not accept any card String[] tollTax A String array of toll tax chart (say “Train : 300â€Â,â€ÂBullCart : 10â€Â) boolean hasMonthlyPass This parameter defines whether there is any monthly pass available or not int numberOfLanes This parameter defines the number of lanes for each side
Can a constructor be private?
What are the differences between malloc() and calloc()?
Why is "using namespace std;" considered bad practice?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
when can we use copy constructor?
How new/delete differs from malloc()/free?
WHAT IS THE ABREVATION OF FORTRAN?
How can virtual functions in c++ be implemented?
In java a final class is a class that cannot be derived. How can you make a similar class in C++