Recent content by tobisoft2

  1. T

    C/C++ Numbers in Ascending Order in C++

    #include <iostream.h> void main() { const int max=50; //sets the maximum size of the array int num[max]; //the array can be initialized from here num={2,3,6,4,3,7,8,,4...n}; int holder; //if array is initialized then no need for this for loop for(int m=0; m<max; m++) {...