- 博客(11)
- 收藏
- 关注
原创 readelf命令
readelf命令,一般用于查看ELF格式的文件信息,常见的文件如在Linux上的可执行文件,动态库(*.so)或者静态库(*.a)等包含ELF格式的文件。symbols.c#include <stdio.h>int time;int foo(int a) { int b = a + 1; return b;}int main(int argc...
2019-12-07 22:50:44 1435
原创 dup和dup2
1.dup2#include "csapp.h"int main(int argc, char *argv[]){ int fd1, fd2, fd3; char c1, c2, c3; char *fname = argv[1]; fd1 = open(fname, O_RDONLY, 0); fd2 = open(fname, O_RDONL...
2019-12-06 17:43:43 218
原创 一个进程调用fork函数创建一个新的子进程。
fork函数中最重要的是:fork()函数被调用一次,却会被返回两次,返回两次的区别,子进程返回的是0,而父进程返回的是子进程的ID。若调用错误则返回-1。1.Fork.c1.Fork.c#include "csapp.h"/* $begin fork *//* $begin wasidefork */int main(int argc, char *argv[]) { ...
2019-12-05 13:12:14 2439 1
原创 locate.c程序gcc运行结果
#include <stdlib.h>#include <stdio.h>#include <unistd.h>static void show_pointer(void *p, char *descr) { // printf("Pointer for %s at %p\n", descr, p); printf("%s\t%p...
2019-05-23 22:20:49 153
原创 bufdemo.c程序gcc运行结果
/* Demonstration of buffer overflow */#include <stdio.h>#include <stdlib.h>/* Implementation of library function gets() */char *gets(char *dest){ int c = getchar(); char *p = de...
2019-05-23 21:48:17 168
原创 runaway.c程序在gcc上运行结果
/* Example of deep recursion */#include <stdio.h>#include <stdlib.h>int recurse(int x) { int a[1<<15]; /* 4 * 2^15 = 64 KiB */ printf("x = %d. a at %p\n", x, a); ...
2019-05-23 21:25:45 184
原创 sq.c程序的gcc运行结果
#include <stdio.h>#include <stdlib.h>int sq(int x) { return x*x;}int main(int argc, char *argv[]) { int i; for (i = 1; i < argc; i++) { int x = atoi(argv[i]); int s...
2019-05-18 13:31:18 348
原创 show byte程序gcc运行结果
/*prints byte representation of data *//* $begin show-bytes */#include <stdio.h>/* $end show-bytes */#include <stdlib.h>#include <string.h>/* $begin show-bytes */typedef uns...
2019-05-18 13:19:38 413
原创 struct 程序gcc运行结果
#include<stdio.h>#include<stdlib.h>typedef struct{ int a[2]; double d;}struct_t;double fun(int i){ volatile struct_t s; s.d = 3.14; s.a[i] = 1073741824;/*Possibly ou...
2019-05-18 13:09:44 260
原创 fsum.c程序gcc的运行结果
#include <stdio.h>#include <stdlib.h>#include <string.h>#define BUFSIZE 256int main(int argc, char *argv[]) { char prefix[BUFSIZE]; char next[BUFSIZE]; int i; floa...
2019-05-18 13:03:00 268
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人