Monday, November 16, 2020

Program to find array bound using C++

For many other Language Programs related to  C++ , Data Structure, C , microprocessor, etc related to MSBTE,Computer engineering, IT related visit our  BLOG

#include<iostream>
using namespace std;
int main()
{
int array[10],b,c;
for(b=0;b<10&&(cin>>c);b++)
{
  array[b]=c;
}
for(b=0;b<10;b++)
{
 cout<<array[b];
}
return 0;
}


Programs:-

For many other Language Programs of microprocessor 8086, C++ , C , Data Structures visit our  BLOG 

There are programs of Object-Oriented Programming, Operators (logical, arithmetic ,relational,etc) ,exception handling , inheritance ,string operations ,etc


 

No comments:

Post a Comment