In the following function:
void AddWordData(FILE* dataFile, short word, int* dc) { fprintf(dataFile, "%06o\n", word); ++(*dc); }
the function gets a short type. I did a search on the internet but found only a short int. what does this mean when a function gets a short type? what type of data?
Yuval source share