Hi, i'm very new here and very new to C. I'm trying to figure out how to encode and decode in my C class. i was given a two txt files to use. one is the decoding symbols and the other are the codes i need to decode.
i started out with
#include <stdio.h>
int main(void)
{
....
void getCode (int... );
void getMessage(int... );
void sortMessage(int ...);
void decodeMessage(int...);
....
i'm not sure if i need to put in the prototypes though i think i need to use arrays, i'm just confused. i want to make this as simple and clean as possible by using those but my problem is I really don't know where to start and what to put in getCode to start. Am I supposed to use the files given? any examples or just advice would help me out.