读书人

vc里面怎么编写一些无用的垃圾代码又不

发布时间: 2012-03-19 22:03:05 作者: rapoo

vc里面如何编写一些无用的垃圾代码又不影响程序运行
如题,呵呵,我向来想去是用内联汇编,不过大家还有什么好的方法

[解决办法]

C/C++ code
typedef int (*F)();F g_f0, g_f1;int fa(){    return g_f0();}int fb(){    return g_f1();}int fc(){    return 0;}int fd(){    g_f1 = fa;    g_f0 = fc;    return fb();}int fe(){    g_f0 = fb;    g_f1 = fd;    return fa();}int main(){    return fe();} 

读书人网 >C语言

热点推荐