Thursday 11 May 2017

C++ Tutorials for begginners (hindi/urdu) [part 19] - Arrays





#include<constream.h>

#include<iomanip.h>

void main(){

clrscr();

 

    //ARRAYS

    int numbers[10]={1,2,3,4,5,6,7,8,9,10};

   

   for(int i=0;i<10;++1)

       cout<<numbers[i]<<" ";

   

getch();

}

No comments:

Post a Comment