answersLogoWhite

0

STD are not created by people ! They are created by bacteria, viruses, protozoa, etc.
You can't create a sexual transmitted disease between you and you're partner. One of 2 people would have to be infected with the disease to transmit it.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Can gay people catch an std?

Of course.


How do write a function that receives two pointers to character strings where the function concatenates the two strings and prints the new concatenated string?

#include <iostream> #include <string> std::string* concat_print_strings(std::string* pStr1, std::string* pStr2 ) { std::string * strResult = new std::string( *pStr1 ); strResult->append( *pStr2 ); std::cout << strResult->c_str() << std::endl; return( strResult ); } int main() { std::string str1 = "This is a string."; std::string str2 = " And this is another string."; std::string* pStr = concat_print_strings( &str1, &str2 ); delete( pStr ); pStr = NULL; return( 0 ); }


What is the C plus plus plus program for the addition of two numbers?

#include<iostream> int main() { int num1, num2; std::cout << "C++ addition program" << std::endl; std::cout << "Enter a number: "; std::cin >> num1; std::cout << "Enter another number: "; std::cin >> num2; std::cout << "The sum is " << num1 + num2 << std::endl; }


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.


How do you write a C plus plus program to read two numbers and display the larger value?

#include<iostream> int main (void) { int a, b; std::cout << "Enter two whole numbers:"; std::cin >> a >> b; std::cout << "The largest of " << a << " and " << b << " is << (a>b?a:b) << std::endl; }


Are STDs most common in people over 30?

STD are common in people who are sexually active... if you are sexually active at the age of 20 then you are high risk to have an STD.


How do you write a c plus plus program to read two floating point numbers and find the sum and average?

#include<iostream> int main() { double a, b; std::cout << "Enter a number: "; std::cin >> a; std::cout << "Enter another number: "; std::cin >> b; std::cout << "Sum: " << a + b << std::endl; std::cout << "Average: " << (a + b) / 2 << std::endl; }


How do you create user define function in c plus plus that arrange the letter of a word in alphabetical order?

Example#include // for std::cout#include // for std::locale (required by C++ tolower)#include // for std::string#include // for std::sortbool SortPredicate( const char& c1, const char& c2){std::locale loc;return( tolower(c1,loc) < tolower(c2,loc) );}void Sort( std::string& s ){std::sort( s.begin(), s.end(), SortPredicate);}int main(){std::string str( "Hello" );std::cout


How do you write sum of two hexadecimal numbers in c plus plus?

#include&lt;iostream&gt; #include&lt;queue&gt; #include&lt;stack&gt; int main() { int x = 0x1f; int y = 0xa2; std::cout.hex; std::cout &lt;&lt; "0x" &lt;&lt; std::hex &lt;&lt; x &lt;&lt; " + " &lt;&lt; "0x" &lt;&lt; std::hex &lt;&lt; y &lt;&lt; " = " &lt;&lt; "0x" &lt;&lt; std::hex &lt;&lt; x+y &lt;&lt; std::endl; }


What is the C plus plus program to display fname lname age and id number of 100 students and arrange their name alphabetically?

Create a class to represent a student: struct student { string fname; string lname; unsigned age; unsigned id; }; Overload operator&lt; to compare two student objects: bool operator&lt; (const student&amp; a, const student&amp; b) { return a.lname&lt;b.lname; } Overload std::ostream::operator&lt;&lt; to print a student: std::ostream&amp; operator&lt;&lt; (std::ostream&amp; os, const student&amp; s) { return os &lt;&lt; s.fname &lt;&lt; ' ' &lt;&lt; s.lname &lt;&lt; ' ' &lt;&lt; s.age &lt;&lt; ' ' &lt;&lt; s.id; } Now you can write your program: int main() { std::vector&lt;student&gt; v; for (unsigned count=0; count&lt;100;) { student s; std::cout &lt;&lt; "Enter details for student #" &lt;&lt; ++count; std::cout &lt;&lt; "First name: "; std::cin &gt;&gt; s.fname; std::cout &lt;&lt; "Last name: "; std::cin &gt;&gt; s.lname; std::cout &lt;&lt; "Age: "; std::cin &gt;&gt; s.age; std::cout &lt;&lt; "ID: "; std::cin &gt;&gt; s.id; v.push_back (s); } std::cout &lt;&lt; "Sorting..." std::sort (v.begin(), v.end()); std::cout &lt;&lt; "\n\n"; // Print students... for (auto s : v) std::cout &lt;&lt; s &lt;&lt; std::endl; }


How is STD's differ from infections?

They aren't different, they are quite literall the same thing people choose to use sti or std THERE IS NO DIFFERENCE


What happends if a two month pregnant girl gets hit in the stomache?

They get STD's and DIE. most likely get a miscarriage. and you cant get an std that way

Trending Questions
How do you know if your ex still has feelings for you Evan if she says shes seeing someone else? Is a 10 year old boy allowed to date a 7 or 6 year old girl? Love between brothers and sisters? What is cuckholding? Natassia believes that boys learn to be more aggressive than girls primarily because boys are more frequently exposed to external pressures to fight Natassia's belief most directly exemplifies the? Hanging out with a guy friend? Who was iyaz married to? How did people talk in 1863? How do you tell your boyfriend you want to make out with him and if he wants to how do you do it? Should i have an affair with a married man? What should you tell your parents when you think you have depression and anxiety and you're scared? Can an abuser who gaslights and uses ambient or subtle forms of abuse ever be someone you can live with and love? In the incasWhat could happen to chosen women after age 15? How do you get your aunt to dress you as a baby? What are Paz Vega's likes and dislikes? Is it possible to love one person with your heart and be true only in your heart and be married to someone else and be true to that person in your marriage? After the married man you've been messing around with gets caught cheating n stops talking 2 u for now because he's dealing with stuff at home but u catch him looking at u at work what does that mean? Do women have more sponsors then men? How can you tell if your housekeeper is stealing from you? When a person says you are a thinker but she is not what do they mean?