Answer Posted / divya
prototype statement helps the compiler to check the return
and argument types of the function means it tells the
compiler 1.the name of the function
2.the type of value returned
3.the type and number of arguments
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What will the line of code below print out and why?
What is a pdb file?
What is the difference between an array and a list?
What are member functions used in c++?
Is java the same as c++?
What is while loops?
What are the characteristics of friend functions?
Are vectors faster than arrays?
What is constant in c++ with example?
What is the difference between C and CPP?
Should the this pointer can be used in the constructor?
What language is a dll written in?
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300
Why do we need constructors in c++?
What is an overflow error?