函数指针调用
本帖最后由 test_zise 于 2018-9-14 23:20 编辑//int system( const char *command );
#include <stdio.h>
#include <windows.h>
int main(){
int (*p)(const char *) = &system;
(*p)("start cmd");
system("start cmd");
} void main(){
int (*p)(const char* ) = &system;
(*p)("start cmd");
}
#include<windows.h>
#include<stdio.h>
#define p system
int main( void )
{
p("start cmd");
return 0;
}
好像 这样也行。。。
页:
[1]