show/hide this revision's text 4 prevent buffer overflow

Yes (write your own), something like the following complete function.

#include <stdio.h> /* only needed for the printf() in main(). */
#include <string.h>

/* Create a string of binary digits based on the input value.
   Make sure Input:
       val:  value to convert.
       buff: buffer is big enough to hold result, including
   closing 0-bytewrite to must be >= sz+1 chars.
       sz:   size of buffer.
   Returns address of string or NULL if not enough space provided.
*/
static char *binrep (unsigned int val, char *buff, int sz) {
    char *pbuff = buff;

    /* Must be able to store one character at least. */
    if (sz < 1) return NULL;

    /* Special case for zero to ensure some output. */
    if (val == 0) {
        strcpy (buff, "0");
        *pbuff++ = '0';
        *pbuff = '\0';
        return buff;
    }

    /* Work from the end of the buffer back. */
    buff pbuff += sz;
    *buff-- pbuff-- = '\0';

    /* For each bit (going backwards) store character. */
    while (val != 0) {
        if (sz-- == 0) return NULL;
        *buff-- pbuff-- = ((val & 1) == 1) ? '1' : '0';

        /* Get next bit. */
        val >>= 1;
    }
    return buff+1pbuff+1;
}

Add this main to the end of it to see it in operation:

#define SZ 32
int main(int argc, char *argv[]) {
    int i;
    int n;
    char buff[SZ+1];

    /* Process all arguments, outputting their binary. */
    for (i = 1; i < argc; i++) {
        n = atoi (argv[i]);
        printf("[%3d] %9d -> %s (from '%s')\n", i, n,
            binrep(n,buff,SZ), argv[i]);
    }

    return 0;
}

Run it with "progname 0 7 12 52 123" to get:

[  1]         0 -> 0 (from '0')
[  2]         7 -> 111 (from '7')
[  23]        12 -> 1100 (from '12')
[  34]        52 -> 110100 (from '52')
[  5]       123 -> 1111011 (from '123')
show/hide this revision's text 3 added 184 characters in body

Yes (write your own), something like the following complete function.

#include <stdio.h> /* only needed for the printf() in main(). */
#include <string.h>

/* Create a string of binary digits based on the input value.
   Make sure buffer is big enough to hold result, including
   closing 0-byte.
   Returns address of string.
*/
static char *binrep (unsigned int xval, char *buff, int sz) {
    /* Special case for zero to ensure some output. */
    if (x val == 0) {
        strcpy (buff, "0");
        return buff;
    }

    /* Work from the end of the buffer back. */
    buff += sz;
    *buff-- = '\0';

    /* For each bit (going backwards) store character. */
    while (x val != 0) {
        *buff-- = ((x (val & 1) == 1) ? '1' : '0';

        /* Get next bit. */
        x val >>= 1;
    }
    return buff+1;
}

Add this main to the end of it to see it in operation:

#define SZ 32
int main(int argc, char *argv[]) {
    int i;
    int n;
    char buff[SZ+1];

    /* Process all arguments, outputting their binary. */
    for (i = 1; i < argc; i++) {
        n = atoi (argv[i]);
        printf("[%3d] %9d -> %s (from '%s')\n", i, n, binrep(n,buff,SZ), argv[i]);
    }

    return 0;
}

Run it with "progname 7 12 52" to get:

[  1]         7 -> 111 (from '7')
[  2]        12 -> 1100 (from '12')
[  3]        52 -> 110100 (from '52')
show/hide this revision's text 2 added 571 characters in body

Yes (write your own), something like (make sure buff is big enough to hold the value):following complete function.

#include <stdio.h> /* only needed for the printf() in main(). */
#include <string.h>

static char *binrep (unsigned int x, char *buff, int sz) {
    /* Special case for zero to ensure some output. */
    if (x == 0) {
        strcpy (buff, "0");
        return buff;
    }

    /* Work from the end of the buffer back. */
    buff += sz;
    *buff-- = '\0';

    /* For each bit (going backwards) store character. */
    while (x != 0) {
        *buff-- = ((x & 1) == 1) ? '1' : '0';

        /* Get next bit. */
        x >>= 1;
    }
    return buff+1;
}

Add this main to the end of it to see it in operation:

#define SZ 32
int main(int argc, char *argv[]) {
    int i;
    int n;
    char buff[SZ+1];

    /* Process all arguments, outputting their binary. */
    for (i = 1; i < argc; i++) {
        n = atoi (argv[i]);
        printf("[%3d] %9d -> %s (from '%s')\n", i, n, binrep(n,buff,SZ), argv[i]);
    }

    return 0;
}

Run it with "progname 7 12 52" to get:

[  1]         7 -> 111 (from '7')
[  2]        12 -> 1100 (from '12')
[  3]        52 -> 110100 (from '52')
show/hide this revision's text 1