1. 程式人生 > >Linux C - 環境

Linux C - 環境

帶參數的main ext 數組 int top extern cnblogs class 開始

程序參數

/* 帶參數的main函數 */

int main(int argc, char * argv[])

argc 是程序參數的個數

argv是一個代表參數自的字符串數組

例如:

$ myprog left rigth "and center"

程序 myprog 將從main函數開始, main帶的參數是:

argc: 4

argv: {"myprog", "left", "rigth", "and center"}

getopt 函數

#include <unistd.h>

int getopt(int argc, char
*const argv[], const char *optstring); extern char *optarg; extern int optind, opterr, optopt;

環境變量

Linux C - 環境