LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 05-21-2013, 06:08 AM   #16
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301

Quote:
Originally Posted by PeterUK View Post
Thanks, I did over some more but if still to really sort what I wanted to do which was treat everything in binary.

I did the following:
Code:
signed int d;
d=7;
printf ("This is d value in hex %x \n", d);
printf ("This is d value in hex %X \n", d);
printf ("This is d value in hex 0x%x \n", d); 
d = d << 2;
printf ("This is d value in hex %x \n", d);
printf ("This is d value in hex %d \n", d);
exit (EXIT_SUCCESS);
}
output:
This is d value in hex 7
This is d value in hex 7
This is d value in hex 0x7
This is d value in hex 1c
This is d value in hex 28
Which it is expected and I understand it, but its not really what I wanted to do I wanted to be able to work on binary :-(
Trust me, with larger values, it is much harder to work in binary than in hex. As posted above, non-standard support for %b exists.

If you were to write out the full integer value (assuming 4 bytes), it would be 0x00000007 -> 0x0000001c. In binary that would be 00000000000000000000000000000111 -> 00000000000000000000000000011100.

Last edited by H_TeXMeX_H; 05-21-2013 at 06:22 AM.
 
Old 05-23-2013, 11:23 AM   #17
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by NevemTeve View Post
try some test like this:

Code:
int main (void)
{
    int i;

    for (i=128; i<256; ++i) {
        printf ("%d %d 0x%x 0%o\n"
        , (signed char)i, (unsigned char)i, i, );
    }
}
Also you can convert into other bases:

Code:
char *utostr (char *to, unsigned n, unsigned base /* 2..36 */)
{
    char *p= to;

    do {
        int digit = n%base;
        *p++ = "0123456789abcdefghijklmnopqrstuvwxyz"[digit];
        n /= base;
    } while (n);
    *p= '\0';
    strrev (to);

    return to;
}

char *ntostr (char *to, int n, unsigned base /* 2..36 */)
{
    if (n<0) {
        *to= '-';
        utostr (to+1, -n, base);
    } else {
        utostr (to, n, base);
    }
    return to;
}
Are you sure is this C?

I tried and after changing some things I getting this error:
Code:
test.c:28:5: warning: implicit declaration of function 'strrev' [-Wimplicit-function-declaration]
/tmp/ccksPa0X.o: In function `utostr.2488':
test.c:(.text+0x4f): undefined reference to `strrev'
collect2: error: ld returned 1 exit status
make: *** [test] Error 1
Would you mind give me a simple example, like 7 to display 111. Thanks
 
Old 05-23-2013, 11:59 AM   #18
johnsfine
LQ Guru
 
Registered: Dec 2007
Distribution: Centos
Posts: 5,286

Rep: Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197
Quote:
Originally Posted by PeterUK View Post
Are you sure is this C?
It was C, apparently not GNU C.

strrev is an extra item in string.h in some implementations of the C library. But apparently not in the GNU C library normally used in Linux.

You can easily find a definition of strrev with a google search and included that in your own source code.

Alternately, it should be easy for a beginning C programmer to rewrite utostr to not need strrev (the easiest way to code that is as a recursive function).

Last edited by johnsfine; 05-23-2013 at 12:03 PM.
 
Old 05-23-2013, 12:03 PM   #19
dwhitney67
Senior Member
 
Registered: Jun 2006
Location: Maryland
Distribution: Kubuntu, Fedora, RHEL
Posts: 1,541

Rep: Reputation: 335Reputation: 335Reputation: 335Reputation: 335
Quote:
Originally Posted by PeterUK View Post
Would you mind give me a simple example, like 7 to display 111. Thanks
Give a person a fish, and you've fed them for the day. Teach them to catch fish, and you've fed them for a lifetime.

There is no automatic way to convert a base-10 number to binary (base-2). You will need to do this yourself. If I may suggest, you should attempt to use the modulo and division operations. For example:
Code:
value = 7;
remainder = value % 2;   // This will yield a value of 1

value /= 2;
remainder = value % 2;   // This will yield a value of 1

value /= 2;
remainder = value % 2;   // This will yield a value of 1
Since this is obviously an attempt on your behalf to learn something new (perhaps for coursework?), I will not offer any complete solution until you present what you have accomplished thus far.
 
Old 05-23-2013, 03:11 PM   #20
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by johnsfine View Post
It was C, apparently not GNU C.

strrev is an extra item in string.h in some implementations of the C library. But apparently not in the GNU C library normally used in Linux.

You can easily find a definition of strrev with a google search and included that in your own source code.

Alternately, it should be easy for a beginning C programmer to rewrite utostr to not need strrev (the easiest way to code that is as a recursive function).
I always search before to write here, and I dint find much information about utostr and where it was it didnt look like C.

Also said I find one one but it mean from binary to Unsigned shift and back.

Also I am doing it as learning exercise no course work! already have two different program to do it, now I am trying to implement what NevemTeve suggested but I rather learning from something than work that spend lot of time debugging uses code. Because I today I waste time looking for this on header files and on internet I though It was a library missing link or declaration and I may just waste the time.

today I did this trying to test his script:

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

int main (void) 
{

unsigned char result = 255;
char *to = malloc(254);
printf ("255 = %d\n", result);
result = result << 2; /* result <<= 2 */
printf ("255 << 2 = %d\n", result);


char *utostr (char *to, unsigned n, unsigned base) // 2..36

{
    char *p= to;

    do {
        int digit = n%base;
        *p++ = "0123456789abcdefghijklmnopqrstuvwxyz"[digit];
        n /= base;
    } while (n);
    *p= '\0';
    strrev (to);

   return to;
}

 utostr (to, 8, 2);

printf ("254 binary = %s\n", to);

exit (EXIT_SUCCESS);
}
I think the great about forums is you could get help and keep moving faster that by your own, if not what is the point?

Last edited by PeterUK; 05-23-2013 at 03:12 PM.
 
Old 05-23-2013, 03:21 PM   #21
johnsfine
LQ Guru
 
Registered: Dec 2007
Distribution: Centos
Posts: 5,286

Rep: Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197
Quote:
Originally Posted by PeterUK View Post
I always search before to write here, and I dint find much information about utostr and where it was it didnt look like C.
I assume utostr was just a name NevemTeve made up. I didn't bother to google it.

My google suggestion was for strrev.

But why does utostr not look like C? It is C code that includes a call to one function that the headers don't declare.
 
Old 05-23-2013, 03:58 PM   #22
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by johnsfine View Post
I assume utostr was just a name NevemTeve made up. I didn't bother to google it.

My google suggestion was for strrev.

But why does utostr not look like C? It is C code that includes a call to one function that the headers don't declare.
I did a search on goggle for utostr and where I have found it it was not like C. I also reach for "strrev" but as the error for the compiler "implicit declaration of function 'strrev'"
 
Old 05-23-2013, 04:02 PM   #23
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by johnsfine View Post
It was C, apparently not GNU C.

strrev is an extra item in string.h in some implementations of the C library. But apparently not in the GNU C library normally used in Linux.

You can easily find a definition of strrev with a google search and included that in your own source code.

Alternately, it should be easy for a beginning C programmer to rewrite utostr to not need strrev (the easiest way to code that is as a recursive function).
I did add earlier today "#include <string.h>" but it didnt work. as you see if you google strrev the first page is flooded by PHP and Java code.
 
Old 05-23-2013, 04:44 PM   #24
dwhitney67
Senior Member
 
Registered: Jun 2006
Location: Maryland
Distribution: Kubuntu, Fedora, RHEL
Posts: 1,541

Rep: Reputation: 335Reputation: 335Reputation: 335Reputation: 335
Quote:
Originally Posted by PeterUK View Post
I did add earlier today "#include <string.h>" but it didnt work. as you see if you google strrev the first page is flooded by PHP and Java code.
Trying Googling for "C reverse string".
 
Old 05-23-2013, 04:55 PM   #25
johnsfine
LQ Guru
 
Registered: Dec 2007
Distribution: Centos
Posts: 5,286

Rep: Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197
I actually googled for
C strrev
and for
GNU strrev

I ignored some PHP and other irrelevant hits and found mostly pages mentioning one way or another than GNU C libraries don't include strrev. Some of those tell you how to define your own strrev, though that is so trivial, you should not need to be told. How to narrow a google search that includes too much off topic is also trivial enough that most of us don't need to be told. You ought to put some effort into learning how to use your tools.
 
Old 05-23-2013, 05:29 PM   #26
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by johnsfine View Post
I actually googled for
C strrev
and for
GNU strrev

I ignored some PHP and other irrelevant hits and found mostly pages mentioning one way or another than GNU C libraries don't include strrev. Some of those tell you how to define your own strrev, though that is so trivial, you should not need to be told. How to narrow a google search that includes too much off topic is also trivial enough that most of us don't need to be told. You ought to put some effort into learning how to use your tools.
Its here chill out!

some code for how is really following:

Code:
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
char *strrev(char *str)
{
      char *p1, *p2;

      if (! str || ! *str)
            return str;
      for (p1 = str, p2 = str + strlen(str) - 1; p2 > p1; ++p1, --p2)
      {
            *p1 ^= *p2;
            *p2 ^= *p1;
            *p1 ^= *p2;
      }
      return str;
}




int main()
{

unsigned char result = 255;
char *to = malloc(254);
printf ("255 = %d\n", result);
result = result << 2; /* result <<= 2 */
printf ("255 << 2 = %d\n", result);

char *utostr (char *to, unsigned n, unsigned base) // 2..36

{
    char *p= to;

    do {
        int digit = n%base;
        *p++ = "0123456789abcdefghijklmnopqrstuvwxyz"[digit];
        n /= base;
    } while (n);
    *p= '\0';
    strrev (to);

   return to;
}

 utostr (to, 254, 2);

printf ("254 binary = %s\n", to);

exit (EXIT_SUCCESS);
 
}
Third was to do it. (I still need to digest his utostr code)

Last edited by PeterUK; 05-23-2013 at 05:30 PM.
 
Old 05-24-2013, 02:17 AM   #27
NevemTeve
Senior Member
 
Registered: Oct 2011
Location: Budapest
Distribution: Debian/GNU/Linux, AIX
Posts: 4,862
Blog Entries: 1

Rep: Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869
strrev is a masterpiece of human mind, I could sell it for billion euros... oh never mind:

Code:
char *strrev (char *str) {
    char *p= str;
    char *q;

    if (!p || !*p) return p;
    p= str;
    for (q= p+strlen(p)-1; p<q; ++p, --q) {
        char tmp= *p;
        *p= *q;
        *q= tmp;
    }
    return str;
}
Also here is the output of an example program:
Code:
32768(10)=1000000000000000(2)
32768(10)=1122221122(3)
32768(10)=20000000(4)
32768(10)=2022033(5)
32768(10)=411412(6)
32768(10)=164351(7)
32768(10)=100000(8)
32768(10)=48848(9)
32768(10)=32768(10)
32768(10)=2268a(11)
32768(10)=16b68(12)
32768(10)=11bb8(13)
32768(10)=bd28(14)
32768(10)=9a98(15)
32768(10)=8000(16)
32768(10)=6b69(17)
32768(10)=5b28(18)
32768(10)=4eec(19)
32768(10)=41i8(20)
32768(10)=3b68(21)
32768(10)=31fa(22)
32768(10)=2flg(23)
32768(10)=28l8(24)
32768(10)=22ai(25)
32768(10)=1mc8(26)
32768(10)=1hph(27)
32768(10)=1dm8(28)
32768(10)=19rr(29)
32768(10)=16c8(30)
32768(10)=1331(31)
32768(10)=1000(32)
32768(10)=u2w(33)
32768(10)=sbq(34)
32768(10)=qq8(35)

Last edited by NevemTeve; 05-24-2013 at 02:25 AM.
 
Old 05-24-2013, 03:42 AM   #28
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by NevemTeve View Post
strrev is a masterpiece of human mind, I could sell it for billion euros... oh never mind:

Code:
char *strrev (char *str) {
    char *p= str;
    char *q;

    if (!p || !*p) return p;
    p= str;
    for (q= p+strlen(p)-1; p<q; ++p, --q) {
        char tmp= *p;
        *p= *q;
        *q= tmp;
    }
    return str;
}
Also here is the output of an example program:
Code:
32768(10)=1000000000000000(2)
32768(10)=1122221122(3)
32768(10)=20000000(4)
32768(10)=2022033(5)
32768(10)=411412(6)
32768(10)=164351(7)
32768(10)=100000(8)
32768(10)=48848(9)
32768(10)=32768(10)
32768(10)=2268a(11)
32768(10)=16b68(12)
32768(10)=11bb8(13)
32768(10)=bd28(14)
32768(10)=9a98(15)
32768(10)=8000(16)
32768(10)=6b69(17)
32768(10)=5b28(18)
32768(10)=4eec(19)
32768(10)=41i8(20)
32768(10)=3b68(21)
32768(10)=31fa(22)
32768(10)=2flg(23)
32768(10)=28l8(24)
32768(10)=22ai(25)
32768(10)=1mc8(26)
32768(10)=1hph(27)
32768(10)=1dm8(28)
32768(10)=19rr(29)
32768(10)=16c8(30)
32768(10)=1331(31)
32768(10)=1000(32)
32768(10)=u2w(33)
32768(10)=sbq(34)
32768(10)=qq8(35)
;-) so you name is Bob? :-)

The Thread has turn out into something else, I posted because one the program was not giving the right output, and the reason I start looking a bit manipulation in C through my review it was because I wanted to emulate some HDL code in C, I find it strange that the machine is a bit buss has not got some option work on bit register as its. But I learn working on this Thread something I didn't know and it was that the compiler can print in assembler, so maybe that is the answer, now I need to know if you could work the other way around do the code in assembler and add use GCC to compile it?
 
Old 05-24-2013, 04:45 AM   #29
NevemTeve
Senior Member
 
Registered: Oct 2011
Location: Budapest
Distribution: Debian/GNU/Linux, AIX
Posts: 4,862
Blog Entries: 1

Rep: Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869Reputation: 1869
1. No, it is NevemTeve.
2. Yes, you can insert Assembly parts into C-source (it is a non-standard gcc-extension), but you really shouldn't -- that's not for beginners.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
cryptography... what's difference between 8bits / 16 bits / 32 bits/ 64 bits/128bits? ybpark81 Linux - Security 4 02-19-2012 08:38 AM
shift+End and Shift+Home key combo doesn't work right santana Linux - Hardware 6 04-23-2010 11:35 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 10:19 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration