answersLogoWhite

0

How do you create a program using string?

Updated: 8/20/2019
User Avatar

Wiki User

12y ago

Best Answer

You can use any text-editor, notepad is an example.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you create a program using string?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

String reverse program with single string and without using library functions in java?

You can create a separate string initially empty. Then using a loop, start at the end of the string and add it to the end of the other string. At the end of the loop, the other string would contain the reverse.


Write a program in java to display a string message using Servlets?

i dont no string for servlate


What is the program to create a string class which stores a string value in c plus plus?

C++ already provides a string class in the C++ standard template library. #include<iostream> #include<string> int main() { using namespace std; string s {"Hello world!"}; cout << s << endl; }


How do you create a program that can input 100 names using flowchart?

create a program that can input 100 names


Write a program convert a string from uppercase to lower case and vice-versa without using string tolower and string toupper commands in TCL?

[ string toupper $str ] or [ string tolower $str ]


Write c program to print palindrome using string without using strrev strlen strcam?

sdfdg


How do you create program using characters strings in turbo c?

#include int main (int argc, char **argv){printf ("The name of this program is %s\n", argv[0]);return 0;}There's two character-string in this program, a literal and a variable. Go find them.


Why do you have to create program?

Because I think is possible to predict the lottery using a computer program


Write a Program to convert decimal number into hexadecimal no without using function and string?

This is not a question.


Write a c program using string concept enter a sting and replace the new string in to old string and find no of occurrence?

print c co com comp compu


Assembly language program for string concatenation using 8086 microprocessor?

write program to concatenating two sting in 8086 assembly language


How do you tell your program you are using a VARIABLE?

You have to declare it. The simplest way to do so is by using the Dim keyword. For example if you want a string variable called someString you would declare it thus: Dim someString as string