answersLogoWhite

0

If you're talking about Sexually Transmitted Diseases, and you're in the US, here is a local STD hotline for all states...and it's toll-free, just call 1-877-889-5407.

If you're talking about Subscriber Trunk Dialing and asking "what is the telephone number of this phone?" then the only general advice I can give you is to first look to see if there is a label on or near the telephone with the number, or otherwise call someone who has Caller ID and ask them to read back to you the number you called from.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How know local and std number on mobile?

Here is a local number for all states...just call 877-889-5407


You want to know your roll number?

yes i want to my roll number of xth std 2013 cbse result by student detail


What is an example of an STD call in Sydney?

An example of an STD (Subscriber Trunk Dialling, or customer-dialed long-distance) call from Sydney would be a call to Melbourne. You dial the STD Code (telephone area code) for Melbourne, 03, followed by the 8-digit local number.


What to do after 12th STD?

Settle down with 1 person you know will be faithful and has no STD.


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; }


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; }


Even or odd in c plus plus program?

#include <iostream> int main() { int num; std::cout << "Enter a number: "; std::cin >> num; if(num % 2 == 0) { std::cout << "Number is even"; } else { std::cout << "Number is odd"; } return 0; }


Write a program in c plus plus that can display addition result of 9 numbers by using for loop?

Example Code#include#includeunsigned input_num (){unsigned num = 0;while (1){std::cout > num)break;std::cout


Function in C plus plus that takes in any number parameter and returns the string representation of it?

#include#includeusing std::cin;using std::cout;using std::endl;using std::string;int main(){string number = "0";cout number;cout


C plus plus program for displaying position and frequency of a number in the given list?

#include<iostream> #include<vector> #include<list> #include<map> #include<time.h> int main() { srand ((unsigned)time(nullptr)); // Create a list of 100 values in the range 0 to 9. std::cout << "Number list:\t"; std::list<size_t> numbers; for (size_t i=0; i<100; ++i) { numbers.push_back (rand()%10); std::cout << numbers.back() << ' '; } std::cout << '\n' << std::endl; // Determine position(s) of each number. std::map<size_t, std::vector<size_t>> map; size_t pos = 0; for (auto it=numbers.begin(); it!=numbers.end(); ++it) map[*it].push_back(pos++); // Print number, frequency and position(s). for (auto it=map.begin(); it!=map.end(); ++it) { std::cout << "Number:\t\t" << (*it).first << std::endl; std::cout << "Frequency:\t" << (*it).second.size() << std::endl; std::cout << "Postions:\t"; const std::vector<size_t>& positions = (*it).second; for (auto it=positions.begin(); it!=positions.end(); ++it) std::cout << (*it) << ' '; std::cout << '\n' << std::endl; } }


Students roll number for Xii STD cbse exam 2009 - 44k?

'Students roll number for Xii std cbse exam 2009?'


Write a program that in c plus plus will parse a text file exampletxt and printout number of words in file number of characters number of blank spaces?

#include<iostream> #include<fstream> int main() { std::ifstream infile ("example.txt", std::ios::in); unsigned chars(0); unsigned words(0); unsigned spaces(0); std::string delim("\t\n "); char ch(0); char last(0); if (!infile.good()) { std::cerr << "The filename is invalid." << std::endl; return -1; } while (infile.get(ch)) { switch (ch) { case (' '): case ('\t'): ++spaces; case ('\n'): // only count words if the last char was not a word delimiter if (delim.find(last) == std::string::npos) ++words; default: ++chars; } last = ch; } infile.close(); std::cout << "Number of chars:\t" << chars << std::endl; std::cout << "Number of words:\t" << words << std::endl; std::cout << "Number of spaces:\t" << spaces << std::endl; }