alt.comp.lang.c
  Home FAQ Contact Sign in
alt.comp.lang.c only
 
Advanced search
December 2007
motuwethfrsasuw
     12 48
3456789 49
10111213141516 50
17181920212223 51
24252627282930 52
31       1
2007
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
alt.comp.lang.c Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Re: Problem with Binary trees         


Author: mimus
Date: Dec 28, 2007 12:55

On Mon, 24 Dec 2007 21:21:12 +0200, Blondeamon wrote:
> Ok i'll try to be brief. As part of one of my essays i thought of
> creating source code for implementation of a binary tree and its basic
> functions.
>
> My code is both from books,lecture notes...
Show full article (5.59Kb)
no comments
  !!!!! Make Over $200 per day in Autopilot !!!!! M5ly<mP$;$         


Author: Get Rich Today
Date: Dec 28, 2007 09:51

Insider Reveals Secret Traffic Arbitrage Tactics Making Over $9,547 a Day

Why Complain About Rising Adwords and Pay Per Click Costs When They Can Make
You Rich Instead? Discover the Astonishing traffic story That Has Been Kept
Secret Until Now...

http://www.mfawn.com/payloadrb.html

w1jY&DI^(d
no comments
  !-= Find CHEAP TRAMADOL Online =-! U1#'[' jot         


Author: Meds Online
Date: Dec 28, 2007 09:26

no comments
  Find Tramadol Online Z5mZ7&u<p'         


Author: Meds Online
Date: Dec 28, 2007 08:24

no comments
  [Linux/ELF/ g/libc] How to Examine the Assembly Code for any g/libc (C Runtime Library) Function         


Author: mimus
Date: Dec 28, 2007 00:39

The bash command

readelf -s /lib/libc-2.3.5.so > ~/bin/libc.syms.txt

gives me a text file named "libc.syms.txt" in my work directory "~/bin"
containing the ELF dynamic symbols table (".dynsym") from my C Runtime
library.

In it, I see the line for the standard C library function strcpy(), the
line starting with the address in hexadecimal and the second number being
the size of the machine code involved:

00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0

The bash command

objdump -d --no-show-raw-insn --start-address=0x00066a8c
--stop-address=0x00066aaf libc-2.3.5.so

then gives the following sweet little disassembly of that code:

libc-2.3.5.so: file format elf32-i386

Disassembly of section .plt:
Disassembly of section .text:
Show full article (1.47Kb)
1 Comment
  Re: Problem with Binary trees         


Author: mimus
Date: Dec 27, 2007 23:00

On Mon, 24 Dec 2007 21:21:12 +0200, Blondeamon wrote:
> Ok i'll try to be brief. As part of one of my essays i thought of
> creating source code for implementation of a binary tree and its basic
> functions.
>
> My code is both from books,lecture notes...
Show full article (6.29Kb)
no comments
  Re: Problem with Binary trees         


Author: Barry Schwarz
Date: Dec 27, 2007 19:00

On Mon, 24 Dec 2007 21:21:12 +0200, Blondeamon gmail.com>
wrote:
>Ok i'll try to be brief. As part of one of my essays i thought of
>creating source code for implementation of a binary tree and its basic
>functions.
>
>My code is both from books,lecture notes and...
Show full article (1.37Kb)
no comments
  Re: Problem with Binary trees         


Author: mimus
Date: Dec 25, 2007 13:57

On Mon, 24 Dec 2007 21:21:12 +0200, Blondeamon wrote:
> Ok i'll try to be brief. As part of one of my essays i thought of
> creating source code for implementation of a binary tree and its basic
> functions.
>
> My code is both from books,lecture notes...
Show full article (5.60Kb)
1 Comment
  I Hope I'm Reading This gcc Stuff Wrong . . . .         


Author: mimus
Date: Dec 19, 2007 20:39

But it really looks like gcc compiles C programs to use glibc or libc5 or
-6 or something like that as a runtime library for the standard C
libraries, and I don't see a compiler option for "standalone".

Is the above correct, or am I getting mildly spazzy over nothing?

--

C: The First and Still the Best Portable AL!

RSN
1 Comment
  C and C#         


Author: alep82
Date: Nov 27, 2007 06:28

What are the way to utilize c and c# in the same project in Visual
Studio IDE ??

Thanks.
1 Comment
 
1 2 3 4 5 6 7 8 9