1. c语言用英语怎么说
C语言: C language英语解释C language: High-level procedural computer programming language with many low-level features, including the ability to handle memory addresses and Bits.C was developed by Dennis M. Ritchie of Bell Laboratories in 1972.
C语言:高阶的程序式计算机程序语言,具有许多低阶特征,包括处理记忆地址和位的能力。 C语言是由贝尔实验室的里奇在1972年发展出来的
2. c语言的翻译
我来了,这么简单:
#include <stdio.h>
int main(void)
{
char str[256];
printf("请输入需要打印的信息:");
gets(str);
printf("生成C语言代码如下:\n");
printf("#include <stdio.h>\n");
printf("int main(void)\n");
printf("{\n");
printf(" printf(\"%s\");\n",str);
printf(" return 0;\n");
printf("}\n");
return 0;
}
运行结果: