Search code examples
arrayscbitwise-operators

*** stack smashing detected ***: terminated



#include <stdio.h>
#include <stdlib.h>

void get_nbits(int num, int n);
void replace_nbits(int num, int n, int val);
void get_nbits_from_pos(int num, int n, int pos);
void replace_nbits_from_pos(int num, int n, int pos, int val);
void toggle_bits_from_pos(int num, int n, int pos);
void print_bits(unsigned int num, int n);

int main()
{
    printf("\tThis program is to show the below mentioned bitwise functions\n\n");
    printf("Select bit operation from below list:\n1. get_nbits\n2. set_nbits\n3. get_nbits_from_pos\n");
    printf("4. set_nbits_from_pos\n5. toggle_bits_from_pos\n6. print_bits\n");
    printf("Enter your choice: ");
    int choice,num,n,pos,val;
    scanf("%d",&choice);
    switch(choice)
    {
        case 1:
            printf("Enter number: ");
            scanf("%d",&num);
            printf("Enter n: ");
            scanf("%d",&n);
            get_nbits(num,n);
            printf("\n");
            break;
        case 2:
            printf("Enter number: ");
            scanf("%d",&num);
            printf("Enter n: ");
            scanf("%d",&n);
            printf("Enter val: ");
            scanf("%d",&val);
            replace_nbits(num,n,val);
            printf("\n");
            break;
        case 3:
            printf("Enter number: ");
            scanf("%d",&num);
            printf("Enter n: ");
            scanf("%d",&n);
            printf("Enter pos: ");
            scanf("%d",&pos);
            get_nbits_from_pos(num,n,pos);
            printf("\n");
            break;
        case 4:
            printf("Enter number: ");
            scanf("%d",&num);
            printf("Enter n: ");
            scanf("%d",&n);
            printf("Enter val: ");
            scanf("%d",&val);
            printf("Enter pos: ");
            scanf("%d",&pos);
            replace_nbits_from_pos(num,n,pos,val);
            printf("\n");
            break;
        case 5:
            printf("Enter number: ");
            scanf("%d",&num);
            printf("Enter n: ");
            scanf("%d",&n);
            printf("Enter pos: ");
            scanf("%d",&pos);
            toggle_bits_from_pos(num,n,pos);
            printf("\n");
            break;
        case 6:
            printf("Enter number: ");
            scanf("%d",&num);
            printf("Enter n: ");
            scanf("%d",&n);
            print_bits(num,n);
            printf("\n");
            break;
    }
}

void get_nbits(int num, int n)
{
    int bin_num[9];
    int cnt = 0;
    int bin_dig = 0;
    int multiple = 1;
    int decimal_num = 0, base = 1, rem; 
    while (num > 0) {
        bin_num[cnt] = num % 2;
        num = num / 2;
        cnt++;
    }
    for(int i=0;i<8;i++)
    {
        bin_num[i+cnt] = 0;
    }
   printf("The binary form of given number: ");
    for(int i=7;i>=0;i--) 
    {
         printf("%d ",bin_num[i]);
    }
    for(int i=0;i<n;i++) 
    {
         bin_dig = bin_dig + multiple*bin_num[i];
         multiple*=10;
    }
    while ( bin_dig > 0)  
    {  
        rem = bin_dig % 10;   
        decimal_num = decimal_num + rem * base;  
        bin_dig = bin_dig / 10;   
        base = base * 2;  
    } 
    printf("\nThe decimal number is: %d\n",decimal_num);
}

void replace_nbits(int num, int n, int val)
{
    int bin_num1[9],bin_num2[9];
    int cnt1 = 0,cnt2 = 0;
    int bin_dig = 0,bin_dig2 = 0;
    int multiple = 1;
    int decimal_num = 0, base = 1, rem;
    while (num > 0) {
        bin_num1[cnt1] = num % 2;
        num = num / 2;
        cnt1++;
    }
    for(int i=0;i<8;i++)
    {
        bin_num1[i+cnt1] = 0;
    }
   printf("\nThe binary form of given number: ");
    for(int i=7;i>=0;i--) 
    {
         printf("%d ",bin_num1[i]);
    }
    while (val > 0) {
        bin_num2[cnt2] = val % 2;
        val = val / 2;
        cnt2++;
    }
    for(int i=0;i<8;i++)
    {
        bin_num2[i+cnt2] = 0;
    }
   printf("\nThe binary form of given value: ");
    for(int i=7;i>=0;i--) 
    {
         printf("%d ",bin_num2[i]);
    }
    for(int i=0;i<n;i++) 
    {
         bin_dig = bin_dig + multiple*bin_num2[i];
         multiple*=10;
    }
    multiple = 1;
    int temp = bin_dig;
    for(int i=0;i<n;i++) 
    {
        bin_num1[i] = temp%10;
        temp/=10;
    }
    printf("\nThe binary form of given number after replacing is: ");
     for(int i=7;i>=0;i--) 
    {
         printf("%d ",bin_num1[i]);
    }
    for(int i=0;i<cnt1;i++) 
    {
         bin_dig2 = bin_dig2 + multiple*bin_num1[i];
         multiple*=10;
    }
    while ( bin_dig2 > 0)  
    {  
        rem = bin_dig2 % 10;   
        decimal_num = decimal_num + rem * base;  
        bin_dig2 = bin_dig2 / 10;   
        base = base * 2;  
    } 
    printf("\nThe decimal from given number after replacing is: %d\n",decimal_num);
}

void get_nbits_from_pos(int num, int n, int pos)
{
    int bin_num[9];
    int cnt = 0;
    int bin_dig = 0;
    int multiple = 1;
    int decimal_num = 0, base = 1, rem; 
    while (num > 0) {
        bin_num[cnt] = num % 2;
        num = num / 2;
        cnt++;
    }
    for(int i=0;i<8;i++)
    {
        bin_num[i+cnt] = 0;
    }
    printf("\nThe binary form of given number: ");
    for(int i=7;i>=0;i--) 
    {
         printf("%d ",bin_num[i]);
    }
    int from_num = 0;
    for(int i = pos;from_num<n;i--,from_num++) 
    {
         bin_dig = bin_dig + multiple*bin_num[i];
         if(bin_dig==1) multiple*=10;
    }
    while ( bin_dig > 0)  
    {  
        rem = bin_dig % 10;   
        decimal_num = decimal_num + rem * base;  
        bin_dig = bin_dig / 10;   
        base = base * 2;  
    } 
    printf("\nThe decimal number is: %d\n",decimal_num);
}

void replace_nbits_from_pos(int num, int n, int pos, int val)
{
    int bin_num1[9],bin_num2[9];
    int cnt1 = 0,cnt2 = 0;
    int bin_dig = 0,bin_dig2 = 0;
    int multiple = 1;
    int decimal_num = 0, base = 1, rem;
    while (num > 0) {
        bin_num1[cnt1] = num % 2;
        num = num / 2;
        cnt1++;
    }
    for(int i=0;i<8;i++)
    {
        bin_num1[i+cnt1] = 0;
    }
   printf("\nThe binary form of given number: ");
    for(int i=7;i>=0;i--) 
    {
         printf("%d ",bin_num1[i]);
    }
    while (val > 0) {
        bin_num2[cnt2] = val % 2;
        val = val / 2;
        cnt2++;
    }
    for(int i=0;i<8;i++)
    {
        bin_num2[i+cnt2] = 0;
    }
   printf("\nThe binary form of given value: ");
    for(int i=7;i>=0;i--) 
    {
         printf("%d ",bin_num2[i]);
    }
   for(int i=n;i>0;i--) 
    {
         bin_dig = bin_dig + multiple*bin_num2[i];
         if(bin_dig==1) multiple*=10;
    }
    multiple = 1;
    int temp = bin_dig;
    printf("\n%d",bin_dig);
    for(int i=pos;i>(pos-n);i--) 
    {
        bin_num1[i] = temp%10;
        temp/=10;
    }
    printf("\nThe binary form of given number after replacing is: ");
     for(int i=7;i>=0;i--) 
    {
         printf("%d ",bin_num1[i]);
    }
    for(int i=0;i<8;i++) 
    {
         bin_dig2 = bin_dig2 + multiple*bin_num1[i];
         multiple*=10;
    }
    while ( bin_dig2 > 0)  
    {  
        rem = bin_dig2 % 10;   
        decimal_num = decimal_num + rem * base;  
        bin_dig2 = bin_dig2 / 10;   
        base = base * 2;  
    } 
    printf("\nThe decimal from given number after replacing is: %d\n",decimal_num);
}

void toggle_bits_from_pos(int num, int n, int pos)
{
    int bin_num[9];
    int cnt = 0;
    int bin_dig = 0;
    int multiple = 1;
    int decimal_num = 0, base = 1, rem; 
    while (num > 0) {
        bin_num[cnt] = num % 2;
        num = num / 2;
        cnt++;
    }
    for(int i=0;i<8;i++)
    {
        bin_num[i+cnt] = 0;
    }
    printf("The binary form of given number: ");
    for(int i=7;i>=0;i--) 
    {
         printf("%d ",bin_num[i]);
    }
    int from_num = 0;
    for(int i = pos;from_num<n;i--,from_num++)
    {
         bin_num[i] = bin_num[i]^1;
    }
     printf("\nThe binary form of given number after toggling: ");
    for(int i=7;i>=0;i--) 
    {
         printf("%d ",bin_num[i]);
    }
    for(int i=0;i<8;i++) 
    {
         bin_dig = bin_dig + multiple*bin_num[i];
         multiple*=10;
    }
    while ( bin_dig > 0)  
    {  
        rem = bin_dig % 10;   
        decimal_num = decimal_num + rem * base;  
        bin_dig = bin_dig / 10;   
        base = base * 2;  
    } 
    printf("\nThe decimal number is: %d\n",decimal_num);   
}

void print_bits(unsigned int num, int n)
{
    int* bin_num = malloc(n*sizeof(int));
    int cnt = 0;
    int bin_dig = 0;
    int multiple = 1;
    int decimal_num = 0, base = 1, rem; 
    while (num > 0) {
        bin_num[cnt] = num % 2;
        num = num / 2;
        cnt++;
    }
    if(n>num)
    {
        for(int i=0;i<n;i++)
        {
            bin_num[i+cnt] = 0;
        }
    }
    if(cnt>n) 
    {
        printf("The n value is lower than the orignal number of digits\n");
        n = cnt;
    }
    printf("The binary form of given number: ");
    for(int i=n-1;i>=0;i--) 
    {
         printf("%d ",bin_num[i]);
    }
    free(bin_num);
}

I'm a beginner and working with Arrays switch cases and loops of arrays concept coding to do some operations on binary numbers using arrays Here I am able to get the output as expected, but I can't figure out the problem of *** stack smashing detected ***: terminated. This comes at the end of the output I don't know why; anyone can help me with it please? And please tell me what the error means.


Solution

  • This answer is not related for the error, however, using this bit position arithmetic technique you would get rid of the main causes of that error. In this technique you don't have to use neither arrays nor number base conversions but bit arithmetics only.
    Consider the number 105 which would be expressed as 01101001 in 8-bit binary right? If it is assigned to an int there will be 24 more digits toward MSb (Most Significant bit). Using bit position arithmetic we can read and print the bit values and we can slice between any 2 positions within the type's bit count range.
    Here I show how it could be done using your 2 functions called get_nbits and get_nbits_from_msb_pos (I changed the 2nd one's name to specify the direction operation). I modified their content for this purpose and also added a utility function called printBinary to print binary values of a given int variable, within the desired range.

    #include <stdio.h>
    
    
    #define mBitCount(var) (sizeof(var) * 8)
    
    void printBinary(int val, int from, int to);
    void get_nbits(int num, int n);
    void replace_nbits(int num, int n, int val);
    void get_nbits_from_msb_pos(int num, int n, int pos);
    void replace_nbits_from_msb_pos(int num, int n, int pos, int val);
    void toggle_nbits_from_msb_pos(int num, int n, int pos);
    
    
    int main(void) {
    /* 105 in decimal, 01101001 in 8-bit binary */
    #define NUM 105
    
        get_nbits(NUM, 4);
        get_nbits_from_msb_pos(NUM, 4, 6);
        replace_nbits(NUM, 4, 7);
        replace_nbits_from_msb_pos(NUM, 4, 6, 15);
        toggle_nbits_from_msb_pos(NUM, 4, 6);
    
        return 0;
    }
    
    
    void printBinary(int val, int from, int to) {
        int bit_count = mBitCount(val);
        if(from < to) {
            puts("Argument error: from cannot be lesser than or equal to 'to'");
            return;
        }
        else if(from >= bit_count || to < 0) {
            puts("Argument error: Position values out of range");
            return;
        }
    
        for(int i = from; i >= to; i--)
        {
            if((val & (1 << i))) {
                // The ith digit is one
                printf("%d",1);
            }
            else {
                // The ith digit is zero
                printf("%d",0);
            }
        }
        putchar('\n');
    }
    
    void get_nbits(int num, int n)
    {
        puts("\nget_nbits:");
        printf("Parameters: num %d, n %d\n", num, n);
        if(n >= mBitCount(num)) {
            printf("Argument error: The n must not exceed the bit count of num type which is: %lu\n", (sizeof(num) * 8));
            return;
        }
    
        puts("The binary form of given number: ");
        printBinary(num, mBitCount(num) - 1, 0);
        // No need to align since bits ranges to 0th bit
        int decimal_num = num & ((1 << n) - 1);
    
        printf("The decimal number is: %d\n",decimal_num);
    }
    
    void replace_nbits(int num, int n, int val)
    {
        puts("\nreplace_nbits:");
        printf("Parameters: num %d, n %d, val %d\n", num, n, val);
        if(n >= mBitCount(num)) {
            printf("Argument error: The n must not exceed the bit count of num type which is: %lu\n", (sizeof(num) * 8));
            return;
        }
    
        puts("The binary form of given number: ");
        printBinary(num, mBitCount(num) - 1, 0);
    
        puts("The binary form of given value: ");
        printBinary(val, n - 1, 0);
    
        // No need to align since bits ranges to 0th bit
        int mask = (1 << n) - 1; // Set n bits from zero to 1
        int decimal_num = num & ~mask; // Clear out the bits that will be replaced
        decimal_num |= val & mask;
        puts("The binary form of given number after replacing is: ");
        printBinary(decimal_num, mBitCount(num) - 1, 0);
    
        printf("The decimal number is: %d\n",decimal_num);
    }
    
    // Get n bits from Most Significant Bit (from left to right)
    void get_nbits_from_msb_pos(int num, int n, int pos)
    {
        puts("\nget_nbits_from_msb_pos:");
        printf("Parameters: num %d, n %d, pos %d\n", num, n, pos);
        if((pos - n) < 0) {
            puts("Argument error: n from position should not underflow the bit position");
            return;
        }
    
        int decimal_num = 0;
    
        puts("The binary form of given number: ");
        printBinary(num, mBitCount(num) - 1, 0);
    
        int mask = ((1 << (pos + 1)) - 1); // Mask beyond the pos toward MSb
        mask &= ~((1 << ((pos + 1) - n)) - 1); // Mask below pos - n toward LSb
        // Slice the num between the pos and n, and then align it to the right
        // in order to get the correct value
        decimal_num = ((num & mask) >> (pos - (n - 1)));
        printf("The decimal number is: %d\n",decimal_num);
    }
    
    // Replace n bits from Most Significant Bit (from left to right)
    void replace_nbits_from_msb_pos(int num, int n, int pos, int val)
    {
        puts("\nreplace_nbits_from_msb_pos:");
        printf("Parameters: num %d, n %d, pos %d, val %d\n", num, n, pos, val);
        if((pos - n) < 0) {
            puts("Argument error: n from position should not underflow the bit position");
            return;
        }
    
        int decimal_num = 0;
    
        puts("The binary form of given number: ");
        printBinary(num, mBitCount(num) - 1, 0);
    
        puts("The binary form of given value: ");
        printBinary(val, n - 1, 0);
    
        int mask = ((1 << (pos + 1)) - 1); // Mask beyond the pos toward MSb
        mask &= ~((1 << ((pos + 1) - n)) - 1); // Mask below pos - n toward LSb
    
        decimal_num = num & ~mask; // Clear the corresponding bits first
        decimal_num |= val << (pos - (n - 1)); // Replace the corresponding bits
    
        puts("The binary form of given number after replacing is: ");
        printBinary(decimal_num, mBitCount(num) - 1, 0);
    
        printf("The decimal number is: %d\n",decimal_num);
    }
    
    void toggle_nbits_from_msb_pos(int num, int n, int pos)
    {
        puts("\ntoggle_nbits_from_msb_pos:");
        printf("Parameters: num %d, n %d, pos %d\n", num, n, pos);
        if((pos - n) < 0) {
            puts("Argument error: n from position should not underflow the bit position");
            return;
        }
    
        puts("The binary form of given number: ");
        printBinary(num, mBitCount(num) - 1, 0);
    
        int decimal_num = num, i = pos - n; // Get the start index
        // Start toggling from start index to the pos
        do {
            decimal_num ^= 1 << i;
            i++;
        }
        while(i <= pos);
    
        puts("The binary form of given number after toggling: ");
        printBinary(decimal_num, mBitCount(decimal_num) - 1, 0);
        printf("The decimal number is: %d\n",decimal_num);
    }
    

    The output

    get_nbits:
    Parameters: num 105, n 4
    The binary form of given number: 
    00000000000000000000000001101001
    The decimal number is: 9
    
    get_nbits_from_msb_pos:
    Parameters: num 105, n 4, pos 6
    The binary form of given number: 
    00000000000000000000000001101001
    The decimal number is: 13
    
    replace_nbits:
    Parameters: num 105, n 4, val 7
    The binary form of given number: 
    00000000000000000000000001101001
    The binary form of given value: 
    0111
    The binary form of given number after replacing is: 
    00000000000000000000000001100111
    The decimal number is: 103
    
    replace_nbits_from_msb_pos:
    Parameters: num 105, n 4, pos 6, val 15
    The binary form of given number: 
    00000000000000000000000001101001
    The binary form of given value: 
    1111
    The binary form of given number after replacing is: 
    00000000000000000000000001111001
    The decimal number is: 121
    
    toggle_nbits_from_msb_pos:
    Parameters: num 105, n 4, pos 6
    The binary form of given number: 
    00000000000000000000000001101001
    The binary form of given number after toggling: 
    00000000000000000000000000010101
    The decimal number is: 21