Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Write a program that accepts an array of numbers, and two
numbers (an element and a
position in the array) and inserts the given element into
nth position of the array.

Answers were Sorted based on User's Feedback



Write a program that accepts an array of numbers, and two numbers (an element and a position in th..

Answer / surabhi

void main()
{
int x[6],item,pos,i,n;
printf("\n enter no of elements to be inserted:");
scanf("\n %d",&n);
for(i=0;i<n;i++)
{
printf("\n enter elements:");
scanf("%d",&x[i]);
}
printf("\n enter item to be inserted:");
scanf("%d",&item);
printf("\n enter position:");
scanf("%d",&pos);
for(i=n;i<=pos-1;i--)
{
x[i+1]=x[i];
}
x[pos-1]=item;
printf("\n elements after insertion:");
for(i=0;i<=n;i++)
{
printf("\n %d",x[i]);
}
getch();
}

Is This Answer Correct ?    3 Yes 2 No

Write a program that accepts an array of numbers, and two numbers (an element and a position in th..

Answer / lince

Dim num() As Integer = {5, 3, 6, 7, 1}
num.SetValue(3, 2)

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More VB.NET Interview Questions

Can you please explain the difference between value and reference types?

0 Answers  


Which is the tool which can convert visual basic old version to .net compatibility version?

0 Answers  


Is there any easy way to convert VB6 programs to VB.Net?

3 Answers  


What are the differences between server-side and client-side code?

0 Answers  


Explain what observations between vb.net and vc#.net?

0 Answers  


Explain the difference between vb.net and c#, related to oops concepts?

0 Answers  


What is enumerator?

0 Answers  


Explain about the performance of visual basic?

0 Answers  


What is MSIL

8 Answers  


Do event have return type?

8 Answers  


Explain about branching logic control in vb.net?

0 Answers  


What is visual basic.net culture?

0 Answers  


Categories