I have the above-mentioned error in s1="some very long string............" Does anyone know what I am doing wrong? 17 Answers 17
When should I use single quotes and double quotes in C or C++ programming? 14 Answers 14
This question already has answers here: What is the difference between “text” and new String(“text”)? (12 answers) Closed 8 years ago. What is ...
-
May 22, 2022
- 0 Comments
I have a pretty long sqlite query: const char *sql_query = "SELECT statuses.word_id FROM lang1_words, statuses WHERE statuses.word_id = lang1_words.word_id ORDER BY lang1_words.word ...
-
May 11, 2022
- 0 Comments
I want to have a percentage sign in my string after a digit. Something like this: 75%. How can I have this done? ...
-
May 5, 2022
- 0 Comments
I have a table test(id,name). I need to insert values like: user's log, 'my user', customer's. insert into test values (1,'user's log'); insert ...
-
April 30, 2022
- 0 Comments
When you use a string literal the string can be interned, but when you use new String("...") you get a new string object. In this example ...
-
April 3, 2022
- 0 Comments