Which one is better- macro or function?
No Answer is Posted For this Question
Be the First to Post Answer
Is set c++?
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 ].
What do you mean by enumerated data type?
What is the syntax for a for loop?
What are different types of loops in c++?
Which should be more useful: the protected and public virtuals?
What does namespace mean in c++?
Will rust take over c++?
pls help.. paper bills.. 1000, 500, 100, 50, 20, 10, 5, 1.. create a program that will count all the paper bills in the number being input.. example: enter a number: 3886 there is/are: 3 ->1000 1 ->500 3 ->100 1 ->50 1 ->20 1 ->10 1 ->5 1 ->1 example2: enter a number: 728 there is/are: 0 ->1000 1 ->500 2 ->100 0 ->50 1 ->20 0 ->10 1 ->5 3 ->1
How can you specify a class in C++?
Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes
How would you find out if a linked-list is a cycle or not?