plz can any one vreate or help me in creating program dat works lyk dat
if we enter any abrivation lyk TCP its output comes out Tranmission Control Protocol..................
plz plz plz.... what a joke. This is such a basic question. Let us see what you have so far before we help. You're not going to be handed the assignment. And speak ENGLISH!!! plz lyk dat are not words.
It looks like you completely ignored the advice Return 0 gave you in the duplicate thread, so this might be pointless, but you just need to process strings instead of ints:
1 2 3 4 5
std::string s;
std::cin >> s;
// you might want to convert it to lower case
if(s == "ftp") std::cout << "File Transfer Protocol";
// and so on...