Search:

Type: Posts; User: Takteek

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    9,928

    What do you think about this this function for...

    What do you think about this this function for writing numbers in big endian?

    int bigendian_fwrite(const void* data, size_t size, size_t count, FILE* stream) {
    unsigned int i = 1;
    const...
  2. Replies
    5
    Views
    9,928

    fwrite / fread question

    What will happen in this situation?

    int value;
    value = 0xE4F2;
    fwrite(&value, sizeof(char), 1, fp);

    What order does fwrite use when writing bytes, and does it depend on the endianness of the...
Results 1 to 2 of 2