Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Mors Alphabet Converter

0.00/5 (No votes)
30 Apr 2010 1  
Title: Mors Alfabet ConverterLanguage: C/C++Platform: All PlatformsLevel: BeginnerDescription: Mors Alfabet ConverterIntroductionEasy Mors Alphabet Converter Using the codeThis is the trick char *encode(const char *s){ static char encoding[][5] = ...
Title: Mors Alfabet Converter
Language: C/C++
Platform: All Platforms
Level: Beginner
Description: Mors Alfabet Converter
Introduction
Easy Mors Alphabet Converter
Using the code
This is the trick

char *encode(const char *s)
{
static char encoding[][5] =
{ ".-", "-...", "-.-.", "-..", ".", "..-.", "--.",
"....", "..", ".---", "-.-", ".-..", "--", "-.",
"---", ".--.", "--.-", ".-.", "...", "-", "..-",
"...-", ".--", "-..-", "-.--", "--.." };
char *morse[80];

int i;
morse[0] = '\0';
for (i = 0; s[i] != '\0'; i++) {
strcat(morse, encoding[s[i] - 'a']);
strcat(morse, " ");
}
return morse;
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here