error correction codes
how to write a progam for error correction codes.
Funnily enough, I don't see any question marks in that post.
Oh well, it wouldn't make sense anyway.
cout << "Error!\n";
that's funny .
where can i find source code for error correction done using c++
"error correction code" could mean almost anything. Here is just one example:
std::string name;
while(true)
{
cout << "Enter your name\n";
cin >> name;
if( name != "Jones" )
cout << "Error\n";
else
break;
}
Or do you want to know about try/catch blocks?
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.