answersLogoWhite

0


Best Answer

According to RxList, the drug is used to: "relieve discomfort, pain, frequent urges to urinate, and cramping/spasms of the urinary tract caused by an infection or a medical procedure. Methenamine and methylene blue are antiseptic drugs that help to clear a urinary tract infection. Salicylate is a pain reliever. Sodium phosphate makes the urine more acidic, which helps the drug methenamine work better. Hyoscyamine is an antispasmodic drug that relaxes muscle cramps/spasms.". It is not used for a STD

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can the drug darcalma be use for STD?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can women develope an std with no sex?

Yes. But she still has to come in contact with the std. Sharing needles thru drug use is a good way to get one.


How is drug use use linked to the risk of HIV in women?

If your using a dirty or used syringe, an std could enter your bloodstream when you shoot up.


What is NOVACIP-TZ- used TO treat?

I have contracted std and was given the drug NOVACIP-TZ(ciprofloxacin 500mg, Tinidazole 600mg) can I use it for the purpose?


Do they Test for STDs in a drug rehab?

It is common practice to offer STD testing to patients in drug rehab.


What can a drug user infect you with?

If you use the same needle that they use, and they just so happen to have an STD or a different blood type as yours, you can become ill or get the disease that they have thru the blood


How do you write Multithreaded applications using C plus plus?

Use std::packaged_task (preferably) or std::thread to start a new thread. Use std::future (preferred), std::mutex or std::atomic to share information between threads.


How do you print 1 to 100 in c without using loop condition?

If you mean you cannot use a for loop, then use a while loop: int i=0 while( i++ < 100 ) std::cout << i << " "; std::cout << std::endl; Or a do-while loop: int i=0; do std::cout << ++i << " "; while( i<100 ); std::cout << std::endl; If these are not allowed either, use a procedural loop: int i=0; again: std::cout << ++i << " "; if( i<100 ) goto again; std::cout << std::endl; If even that is not allowed, then the only option is to hard-wire: std::cout << 1 << " " << 2 << " " << [etc] << 99 << " " << 100 << std::endl; It does seem a pointless exercise when a for loop exists specifically for counting iterations like this: for( int i=1; i<=100; ++i ) std::cout << i << " "; std::cout << std::endl;


What was the atmosphere like at Woodstock?

basically increase in drug usage and increase in STD'S... increase in the hippie movement


How do you work with string in c plus plus?

The easiest way is to use a std::string object. #include<iostream> #include<string> int main() { std::string s("hello world"); std::cout<<s<<std::endl; } You can also use C-style character arrays if you don't need the full functionality of a std::string object.


How do you use sin in c plus plus?

#include<iostream> int main() { std::cout << "sin(1) = " << std::sin(1.0) << std::endl; std::cout << "cos(1) = " << std::cos(1.0) << std::endl; std::cout << "tan(1) = " << std::tan(1.0) << std::endl; std::cout << "asin(1) = " << std::asin(1.0) << std::endl; std::cout << "acos(1) = " << std::acos(1.0) << std::endl; std::cout << "atan(1) = " << std::atan(1.0) << std::endl; } Output: sin(1) = 0.841471 cos(1) = 0.540302 tan(1) = 1.55741 asin(1) = 1.5708 acos(1) = 0 atan(1) = 0.785398


Rearrange the string in alphabetical order in two dimensional character array?

Use a std::vector<std::string>> to store the strings, then call the std::vector::sort() method.


In c plus plus Programming can you replace STDio header with using name space STD?

No. You can't use namespace std even if you include stdio.h. At the very least you must include stddef.h before you can use namespace std.