Mors Alphabet Converter





4.00/5 (1 vote)
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;
}