TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Reversing Words in a Sentence using c#
Midhun Tp
Aug 10
2016
Code
804
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
protected
void
Page_Load(
object
sender, EventArgs e)
{
string
inputsent =
"This is an simple example of sentence reversing"
;
string
[] words = inputsent.Split(
' '
);
Array.Reverse(words);
Response.Write(
string
.Join(
" "
, words));
}
ASP.NET