answersLogoWhite

0

#include

using std::cin;
using std::cout;
using std::endl;

int main()
{
const int arraySize = 128;
char myString[arraySize] = {'0'};
cout << endl << "Enter a string: " << endl;
cin.getline(myString, 128, '\n');

int numberOfChars = 0;
while ((numberOfChars < (arraySize - 1)) && (myString[numberOfChars] != NULL))
{
++numberOfChars;

}
cout << endl << "You've entered:"
<< endl << myString << endl;


char myStringReversed[arraySize] = {'0'};
int index = 0;
while ((index <= numberOfChars) && (myString[index] != NULL))
{
myStringReversed[numberOfChars - index - 1] = myString[index];
++index;

}
cout << endl << "Reversed string is: "
<< endl << myStringReversed << endl;


system("PAUSE");
return 0;

}

User Avatar

Wiki User

15y ago

What else can I help you with?

Continue Learning about Music & Radio

What is the souce code of a b c and abc in vbnet?

In VB.NET, you can define variables a, b, and c, and then concatenate them to form abc like this: Dim a As String = &quot;a&quot; Dim b As String = &quot;b&quot; Dim c As String = &quot;c&quot; Dim abc As String = a &amp; b &amp; c This code initializes three string variables and uses the &amp; operator to concatenate them into a new string abc.


How do you reverse a string in emu8086?

To reverse a string in emu8086, you can use a simple loop to swap characters from the start and end of the string until you reach the middle. Load the address of the string, calculate its length, and then use two pointers: one at the beginning and one at the end of the string. Swap the characters at these pointers and move the pointers towards the center, continuing this process until they meet. Finally, the string will be reversed in place.


How do you tune a 6 string ukulele?

It will have the basic G, C, E, A tuning, with the two additional strings. These are paired with the C and A strings. The second "A" string is tuned to the same note as the other "A" string. The additional "C" string is going to be either an octave up or down. The strings in order will be G, C, C', E, A, A.


What strings are a e f d c b a on the violin?

The highest pitched string is the E string, followed by the A then the D. G is the lowest string. F and lower E are located on the D string. B and C are on the A string.


On a 5 string bass guitar what are the notes on the lo- B string?

B C C# D D# E and then repeats all the notes on the E string.

Related Questions

What is the use of Reverse String in C program?

The use of the reverse string in C program is used to reverse the letters in the string. An example would be reverse me would be reversed to em esrever.


How do you convert a number that consist of alphabet and number in reverse order?

To reverse a number, first convert the number to a string, then reverse the string. Given your number consists of alphanumeric characters, the number must already be a string so simply reverse the string: #include&lt;string&gt; using std::string; string reverse (const string&amp; s) { string str {}; for (auto c : s) str.insert (str.begin(), c); return str; } int main () { std::cout &lt;&lt; "Enter a number: "; string s {}; std::cin &gt;&gt; s; std::cout &lt;&lt; "The number in reverse is: " &lt;&lt; reverse (s); }


Write a flowchart of reverse the string in c?

wefwfe


How do you get value of a string in reverse order in c?

Assume C#, not C: Traditional way: public string Reverse(string s) { if (string.IsNullOrEmpty(s)) return s; // "" or null char[] characters = s.ToCharArray(); Array.Reverse(characters); return new string(characters); } or as an extension method: public static string Reverse(this string s) { if (s == "") return ""; char[] characters = s.ToCharArray(); Array.Reverse(characters); return new string(characters); } The differences of the 2 methods above is on the caller (how to use Reverse()), and they may co-exist: For example: string test = "abc"; string result1 = Reverse(test); // traditional way string result2 = test.Reverse(); // call the extension


How to Program for reversal of string ven123kat in c?

#include #include #include int reverse(int i);char st[]="ven123kat";void main() {printf("\nThe string is: %s", st);reverse(0);printf("\nReversed string is: %s", st);getch();}int reverse(int i) {if (i


Print reverse string in c sharp?

To print a reverse string in C#, you can use the Array.Reverse method or LINQ. Here's a simple example using Array.Reverse: string original = &quot;Hello, World!&quot;; char[] charArray = original.ToCharArray(); Array.Reverse(charArray); string reversed = new string(charArray); Console.WriteLine(reversed); This code converts the string to a character array, reverses the array, and then creates a new string from the reversed array before printing it.


How do you create a string and reverse a string in vb?

gov


How do you reverse a string in PHP?

A predefined function can reverse a string as shown below:echo strrev('pizza'); // outputs: azzip


Program to reverse string in perl?

To reverse a string in Perl, you can use the reverse function along with split to break the string into individual characters, and then join them back together. Here’s a simple example: my $string = &quot;Hello, World!&quot;; my $reversed = join('', reverse split('', $string)); print $reversed; # Output: !dlroW ,olleH This code splits the string into characters, reverses the list of characters, and then joins them back into a single string.


Write a C program to accept a string from user and display its ascii value and then display sum of all ascii value of strings?

//C program to accept a string from user and //display its ascii value and //then display sum of all ascii value of strings #include&lt;stdio.h&gt; #include &lt;string.h&gt; int main() { char String[100]; int Sum,Index; Sum=0; //Sum is initially zero printf("Enter the string:\n"); gets(String); //Accept String from User for(Index=0;Index&lt;strlen(String);Index++) { Sum+=(String[Index]); //Adds (the ASCII values of) the String characters. } printf("The sum is %d\n",Sum); //Printing it as %d gives the equivalent ASCII value. return 0; }


How do you write string in reverse through the HTML tags?

Not possible through html. Use php strrev function. For eg:


Flow chart to reverse digits of numbers?

ALGORITHM REVERSEINPUT (string)"STRINGLENGTH() would be a function that returns the lenght of the string"FOR (i = STRINGLENGTH(string); i >= 0; i--) BEGINDISPAY (string[i])END FOREND REVERSE