program that will accept any name and will be stored in an
array
Answers were Sorted based on User's Feedback
Answer / manish kumar
this code is in c#
//i will store a name of 4 letters
string []name= string[5];
Console.WriteLine("Enter your name plz only 4 words");
for(int i=0;i<4;i++)
{
name[i]=Console.ReadLine();
}
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / gunda raj
char a[10];
cout<<" enter any name please";
for(int i=0;i<9;i++)
{
cin>>a[i];
}
Is This Answer Correct ? | 1 Yes | 3 No |
how to create an anonymous function
determine which Element received an Event
code to get the coordinates of a Click Event
how to Auto Scroll the page
code to images to rollover
program to show a progress bar
how to prevent an Event from performing its default behavior
how to pass data between pages using URLs
how to create a Draggable element
how to transform XML Data into HTML
create a slide show
how to delay a function call ?