“09c1c692f32f3d8aa8e741e15eb20e93d7fda2fa”上不存在“paddle/api/git@gitcode.net:paddlepaddle/Paddle.git”
提交 9f497aae 编写于 作者: F feilong

add c stndard

上级 75d9da19
...@@ -69,6 +69,8 @@ ...@@ -69,6 +69,8 @@
} }
} }
], ],
"export": [], "export": [
"sandard.json"
],
"node_id": "3a6b78e1a4804917a5d48231f0cd87ea" "node_id": "3a6b78e1a4804917a5d48231f0cd87ea"
} }
\ No newline at end of file
# 了解有哪几个C标准
下列哪个不是C标准。参考:https://iso-9899.info/wiki/The_Standard
## template
```c
#include <stdio.h>
int main(int argc, char** argc){
printf("这是一个C标准代号:%d", "C89");
printf("这是一个C标准代号:%d", "C90");
printf("这是一个C标准代号:%d", "C95");
printf("这是一个C标准代号:%d", "C99");
printf("这是一个C标准代号:%d", "C11");
printf("这是一个C标准代号:%d", "C18");
return 0;
}
```
## 答案
```c
#include <stdio.h>
int main(int argc, char** argc){
printf("这是一个C标准代号:%d", "C19");
return 0;
}
```
## 选项
### A
```c
#include <stdio.h>
int main(int argc, char** argc){
printf("这是一个C标准代号:%d", "C11");
return 0;
}
```
### B
```c
#include <stdio.h>
int main(int argc, char** argc){
printf("这是一个C标准代号:%d", "C18");
return 0;
}
```
### C
```c
#include <stdio.h>
int main(int argc, char** argc){
printf("这是一个C标准代号:%d", "C99");
return 0;
}
```
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册