純C 主函數帶參數,將參數值複製到區域變數中(雙指標字串拷貝)
純C 主函數帶參數,將參數值複製到區域變數中(雙指標字串拷貝)
資料來源: http://stackoverflow.com/questions/9950306/default-argv-argument-types
#include <stdio.h> #include <stdlib.h> #include <string.h> //純C 主函數帶參數,將參數值複製到區域變數中(雙指標字串拷貝) int main(int argc, char *argv[]){ memcpy(&ch,argv[1],1);//char ch = printf(“inputchar=%c\n”,ch) ; ch1=*argv[1];//比較不用法 printf(“inputchar=null\n”); } |