之前写的一个小代码,但只在Windows下有效果:
#include
#include
#define decode(p,r,i,n,t,f) r##f##r##i##t##p
#define puts decode(m,s,t,o,e,y)
int main()
{
puts((char*)(int const[]){1953851507,1853321060,7548192});
return 0;
}
以上代码需要C编译器至少支持C99标准,因为用到了C99新增的语法复合字面量,否则编译不一定通过。
修改了下,可以在Windows /Linux /Mac OS下编译都有效果的(C/C++编译器都可编译):
#include
#include
#define decode(p,r,i,n,t,f) r##f##r##i##t##p
#define puts decode(m,s,t,o,e,y)
int main()
{
double ID[] = {1.3553894309652565e+224,7.1049085501561151e-077,6.3244769974566492e-310};
return puts((char*)ID);
}
以下只适合 Windows /Linux:
#include
#include
#define decode(p,r,i,n,t,f) r##f##r##i##t##p
#define puts decode(m,s,t,o,e,y)
int main()
{
double ID[] = {1.3553894309652565e+224,1.0805197184392210e-081,
7.2746636873724370e+199,6.9524391087699090e-308};
return puts((char*)ID);
}
其实真正有效果的也只是Windows吧,Linux和Mac OS除非是root权限才会有效果,这是不是也说明了在默认安全权限方面Linux和Mac OS要比Windows更安全些呢? 最后呢,希望和大家一起学习,本人刚学C语言,很感兴趣,但也有很多不懂的地方,希望和大家一起探讨。如果对C也感兴趣的童鞋也可以来鹅qun:48552320 共同学习、交流和探讨。