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
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 |
Answer / lince
Dim num() As Integer = {5, 3, 6, 7, 1}
num.SetValue(3, 2)
| Is This Answer Correct ? | 0 Yes | 0 No |
Using VB, how can you change the Mouse Pointer?
Explain internal keyword in .net framework?
How to connect a service based database to vb.net forms? Do we have to create any specific database?
What are the differences between c# and visual basic.net?
Before in my vb app I would just load the icons from dll. How can I load the icons provided by .net dynamically?
give me code for selecting itemcode and correspondin vendor details wll displays in the gridview?
What are the differences between vb.net and c#, related to oops concepts
What are the technology areas that microsoft.net contains?
i had attended to infosys interview on 17th april 2010...on .net..3+ experience .. to my knowledge i did well in technical and they asked me to wait for next process ..so i waited for 15 min ..later one person came and said give 7-10 days time for intimation of next process do they keep technical and hr on different day ...or i loose the interview ..am confused yaar please any say na what accuatly would be happend
what is the advantage of option strict on?
Is there any website from where i can download VB.net bible free in pdf format
Sir, what code to store data from vb net sql server 2008 to 2005 and at the same time in order to validate the data entered is not the same, but there have been contacts in the module. Examples such as the log table that I created, the user name as the primary key.
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)