Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7905347
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T10:26:39+00:00 2026-06-03T10:26:39+00:00

I have one string which is base 32 bit decoded now I want to

  • 0

I have one string which is base 32 bit decoded now I want to Decode that string I also want to encode any string to base 32 bit decoded string.
Is there any way,any Algorithm(even in C) or any API for that so i can solve this issue.
Thanx in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T10:26:40+00:00Added an answer on June 3, 2026 at 10:26 am

    I am not sure if I understand your question, but if you want to convert a base 32 number to base 10(decimal) number, take this:

    #include <stdio.h>                                                                                                                                          
    #include <string.h>
    #include <math.h>
    
    #define BASE 32
    
    unsigned int convert_number (const char *s) {
        unsigned int len = strlen(s) - 1;
        unsigned int result = 0;
        char start_ch = 0, ch;
        while(*s != '\0') {
            ch = *s;
            if (ch >= 'a') {
                start_ch = 'a' - 10;
            } else if (ch >= 'A') {
                start_ch = 'A' - 10;
            } else {
                start_ch = '0';
            }
    
            if(len >= 0)
                result += (ch - start_ch) * pow(BASE, len);
            else
                result += (ch - start_ch);
            ++s;
            --len;
        }
    
        return result;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a function which parses one string into two strings. In C# I
I have one method in my managed bean which returns javascript as a string.
I would like to have a mapping which maps two string into one string.
I have a WCF service which accepts a string as a paramter for one
I have a function written in C# which has one parameter type as Dictionary<string
I'm using .NET 3.5. I have two string arrays, which may share one or
there are almost 50 items out of that one or two items string return
I have one base class which holds a map for function pointers like this
Imagine I have an function which goes through one million/billion strings and checks smth
I have to compare two strings for case insensitive equality which one is faster

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.