Assingment 2 Task -2 NUST OOP C++
Create dynamic array you can change the
prototype of function where you feel necessary. N is the size of the array
1. void
populate_array(int *array, int N);
// this initializes an array of size N with random
values.
2. void
print_array(int *array,.
Assingment 2 Task -1 NUST OOP C++
Task-1:
Write a program to implement the Date class
which has three data members: day, month
and year. Provide two constructors, one which takes arguments and another
one which does not (you may set values of data members to 0). Write getter and
setter.
Assignment 1 NUST OOP C++
· Write two classes one named as animal and the other as shape.
· Think of appropriate data members for both classes.
· Write setter.