write a program that withdrawals,deposits,balance
check,shows mini statement. (using functions,pointers and
arrays)
No Answer is Posted For this Question
Be the First to Post Answer
Write a program and call it sortcheck.cpp which receives 10 numbers from input and checks whether these numbers are in ascending order or not. You are not allowed to use arrays. You should not define more than three variables
What is the difference between an array and a list?
Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort
Do we have to use initialization list in spite of the assignment in constructors?
What is difference between initialization and assignment?
12 Answers HCL, HP, Infosys,
Types of storage and scope of each type
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
What are the advantages of using const reference arguments in a function?
What is virtual base class uses?
What is the full form nasa?
What about Virtual Destructor?
In the derived class, which data member of the base class are visible?