- 浏览: 287747 次
文章分类
- 全部博客 (276)
- burp+hydra暴力破解 (1)
- kali linux工具集 (6)
- kali (59)
- linux (54)
- password (14)
- web (63)
- 渗透测试 (50)
- windows (40)
- metasploit (9)
- 信息收集 (32)
- burp suit (4)
- 安全审计 (9)
- https://github.com/secretsquirrel/the-backdoor-factory (0)
- nmap (4)
- arachni (2)
- 工具 (5)
- sql (3)
- 网络 (2)
- 后渗透测试 (10)
- 内网 (5)
- 无线 (2)
- C (3)
- bios (1)
- RoR (12)
- mongodb (1)
- linxu (1)
- gdb (1)
- linux,虚拟化 (1)
- python (4)
最新评论
jason@ubuntu:~/test$ cat a.c #include <stdio.h> void(* fpp)(void); static void fp(void){ printf("fp is called\n"); return; } void set_f(void){ fpp =fp; printf("set_f is called\n"); return; }
jason@ubuntu:~/test$ cat b.c #include <stdio.h> extern void(* fpp)(void); void set_f(void); int main() { printf("in main\n"); set_f(); fpp(); return 0; }
jason@ubuntu:~/test$ gcc a.c b.c
发表评论
-
使用GCC/GNU-ld删除dead code
2016-05-09 17:18 644[url] https://gcc.gnu.org/ml/gc ... -
python 修饰器
2016-02-05 15:11 410def wrapper1(function): ... -
ubuntu 14.04 install e431 wifi driver
2016-01-25 20:59 447引用 sudo apt-get install linu ... -
git
2016-01-07 12:01 442http://finalshares.cn/attachmen ... -
嵌入式中使用gdb
2016-01-06 17:38 3684编译 For gdb: /path/to/gdb-sr ... -
linux change boot image
2016-01-02 00:55 5361. change grub2 引用vim /etc/defa ... -
binwalk --dd
2015-12-28 21:51 1394http://www.devttys0.com/2012/12 ... -
embeded LD_PRELOAD
2015-12-28 00:17 553引用 eve@eve:~/squashfs-root$ sud ... -
hardware hacking
2015-12-27 01:32 689For video stuff: https://www.yo ... -
ubuntu support kindle
2015-12-20 23:13 358引用apt-get install mtpfs -
linux 备份系统
2015-12-05 22:22 416引用备份 dd if=/dev/sda > myimag ... -
[译]root权限运行vlc
2015-11-30 22:19 1361原文地址:http://www.blackmoreops.co ... -
【转】关闭TCP Timestamps来节省一点带宽
2015-10-15 23:29 1624http://highscalability.com/blog ... -
[转]Terminal escape sequences – the new XSS for Linux sysadmins
2015-09-25 23:58 429https://ma.ttias.be/terminal-es ... -
ipython basic
2015-09-25 11:31 452Introspection引用 Using a questio ... -
lxc重命名容器名
2015-09-20 00:25 803lxc-ls 使用文件夹名作为容器名。所以可以更改文件夹名称来 ... -
lxc更新apt源
2015-09-18 11:49 746最近一直在使用lxc创建容器,每次创建一个容器都需要把apt源 ... -
wireshark:Couldn't run /usr/bin/dumpcap in child process: Permission denied
2015-09-11 10:26 3341When start wireshark, I met an ... -
[转]调试python内存泄漏
2015-09-09 00:48 356http://chase-seibert.github.io/ ... -
[转]Python @classmethod and @staticmethod for beginner?
2015-09-07 16:59 365http://stackoverflow.com/questi ...
相关推荐
printf("This is a static function in sub.c.\n"); } ``` - `test1.c`: ```c // test1.c #include void myFunc(); // 将导致编译错误 int main() { myFunc(); // 尝试调用静态函数 return 0; } ``` 编译`...
static void inc(){ c++; } } 2. 静态成员方法 调用一个静态方法就是“类名.方法名”。例如: class Simple{ static void go(){ System.out.println("Go..."); } } public class Cal{ public static void...
一、关于staticstatic 是C++中很常用的修饰符,它被用来控制变量的存储方式和可见性,下面我将从 static 修饰符的产生原因、作用谈起,全面分析static 修饰符的实质。 static 的两大作用: 一、控制存储方式 static...
static void inc(){ c++; } } class Count{ public static void prt(String s){ System.out.println(s); } public static void main(String[] args){ Value v1, v2; v1 = new Value(); v2 = new Value();...
- **For a conjunct of the form \( c \in v \):** We know from \( \phi \) and \( \psi \) being solutions that \( c \in \phi(v) \) and \( c \in \psi(v) \). Therefore, \( c \in (\phi(v) \cap \psi(v)) \), ...
在C语言中,`auto`、`static`、`register`和`extern`是四种用于控制变量存储类别的关键字,它们各自拥有独特的功能与应用场景,理解这些关键字的区别对于编写高效且正确的C程序至关重要。 ### `auto` `auto`是默认...
iface eth0 inet static ``` 然后,在下面添加静态IP配置的行,例如: ``` address 192.168.1.100 netmask 255.255.255.0 gateway 192.168.1.1 dns-nameservers 8.8.8.8 8.8.4.4 ``` 这里,`address`是你要设置的...
static void inc() { c++; } } public class Count2 { public static void prt(String s) { System.out.print(s); } public static void main(String[] args) { Value v1, v2; v1 = new Value(); v2 = ...
自1978年C编程语言被引入以来,它一直被视为一种强大的编程工具,并在全球范围内受到程序员们的广泛欢迎。尽管最初是为了支持UNIX操作系统而设计的,但C语言已经被广泛应用于多个平台上复杂的软件开发之中。无论是低...
static void inc() { c++; } } class Count { public static void prt(String s) { System.out.println(s); } public static void main(String[] args) { Value v1, v2; v1 = new Value(); v2 = new ...
static void inc() { c++; } } class Count { public static void prt(String s) { System.out.println(s); } public static void main(String[] args) { Value v1, v2; v1 = new Value(); v2 = new ...
在编程语言中,`static` 是一个非常关键的修饰符,尤其在C、C++和Java等语言中,它有着广泛的应用。`static` 关键字可以用来修饰变量、函数和类的成员,其作用主要体现在以下几个方面: 一、静态变量(static ...
- **static inc(Uchar *a)**: 使指定的字节类型变量在0到最大序列号范围内循环递增。 - **static between(Uchar a, Uchar b, Uchar c)**: 判断当前帧是否位于发送或接收窗口内。其中,发送窗口的上下限分别为`next_...
static void inc(){c++;}}class Count{public static void prt(String s){System.out.println(s);}public static void main(String[] args){Value.v1 = new Value();Value.v2 = new Value();prt("v1.c=" + Value.c +...
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General ...
* 写出下列代码的输出内容`#include <stdio.h> int inc(int a){ return(++a); } int multi(int*a,int*b,int*c){ return(*c=*ab); } typedef int(FUNC1)(int in); typedef int(FUNC2) (int*,int*,int*); void show...
static void inc() { c++; } } class Count { public static void main(String[] args) { Value v1 = new Value(); Value v2 = new Value(); System.out.println("v1.c=" + v1.c + " v2.c=" + v2.c); v1....
public static void main(String[] args) throws Exception{ System.out.print("The input Fahrenheit is "); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int f = Integer....