本文介绍了请解释一下.........它是如何工作的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

#include <stdio.h>
#include <stdlib.h>
#include<conio.h>

int n = 0;

void foo() {
    void* x;
    printf("%d\n", ++n);
    if (n >= 100) {
        exit(0);
    }
    *((char**) (&x + 4)) -= 5;
}

int main() {
    foo();
    return 1;
}





我的尝试:



i试图理解,但我没有得到它。请解释一下。



What I have tried:

i have tried to understand but i did not get it. please explain me .

推荐答案



这篇关于请解释一下.........它是如何工作的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 00:33