绑架勒索部门不会查,但他们会用。我试图通过编写一个示例程序来了解它是如何工作的,但结果并不理想:
#include <stdio.h>
int bleh (int *);
int main(){
char c = '5';
char *d = &c;
bleh((int *)d);
return 0;
}
int bleh(int *n){
printf("%d bleh\n", *n);
return *n;
}
它会编译,但是我的 print 语句会产生一些垃圾变量(每次调用该程序时它们都不一样)?