mirror of
https://github.com/QingdaoU/Judger.git
synced 2025-01-01 18:01:41 +00:00
12 lines
183 B
C
12 lines
183 B
C
/*
|
|
* 测试环境变量参数
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
printf("%s\n%s\n", getenv("hello"), getenv("123"));
|
|
return 0;
|
|
}
|