C打印自己

 

1,
#include <stdio.h>;


int main()
{
   FILE *f;
   char c;

   if ( ( f = fopen( __FILE__, "r" ) ) != NULL ) {
      while ( fread( &c, 1, 1, f ) == 1 )
          frwite( &c, 1, 1, stdout );
      fclose( f );
   }
   return 0;
}
 
 
2,
//test.c
#include <stdio.h>
extern unsigned char _binary_test_c_start[];
int main()
{
    printf("%s/n", _binary_test_c_start);
    return 0;
}
 
 
 
#Makefile
test: test.obj test.c
    gcc -o test test.c test.obj
test.obj:test.c
    objcopy -I binary -B i386 -O elf32-i386 test.c test.obj
 
clean:
    @-rm test.obj test

[liman@localhost book]$ objdump -ht test.obj
 
test.obj:     file format elf32-i386
 
Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .data         00000087  00000000  00000000  00000034  2**0
                  CONTENTS, ALLOC, LOAD, DATA
SYMBOL TABLE:
00000000 l    d  .data    00000000 .data
00000000 g       .data    00000000 _binary_test_c_start          //资源首地址
00000087 g       .data    00000000 _binary_test_c_end
00000087 g       *ABS*    00000000 _binary_test_c_size

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值