test_zise 发表于 2014-4-21 18:28:24

函数指针调用

本帖最后由 test_zise 于 2018-9-14 23:20 编辑

仰望天上的光 发表于 2014-4-21 18:28:25

//int system( const char *command );
#include <stdio.h>
#include <windows.h>
int main(){       
        int (*p)(const char *) = &system;       
        (*p)("start cmd");       
        system("start cmd");               
}

415418014 发表于 2014-4-21 18:48:05

void main(){

      int (*p)(const char* ) = &system;
      (*p)("start cmd");
}

HHR 发表于 2014-4-21 18:48:11


#include<windows.h>
#include<stdio.h>
#define p system

int main( void )
{
        p("start cmd");
        return 0;
}
好像 这样也行。。。
页: [1]
查看完整版本: 函数指针调用