c语言 要求在屏幕上显示出以下信息“This is c program.”
时间: 2024-03-17 21:42:09 浏览: 66
可以使用C语言的标准库函数 `printf` 来在屏幕上输出信息。代码如下:
```c
#include <stdio.h>
int main() {
printf("This is c program.\n");
return 0;
}
```
输出结果为:
```
This is c program.
```
其中 `\n` 表示换行符,使输出信息在屏幕上单独占一行。
相关问题
编写一个C语言程序,在屏幕上输出一行信息“This is a programe”子函数
以下是一个简单的 C 语言程序,包含一个函数 `printMessage()`,该函数可以在屏幕上输出一行信息 “This is a program”:
```c
#include <stdio.h>
void printMessage() {
printf("This is a program\n");
}
int main() {
printMessage();
return 0;
}
```
在 `main()` 函数中,我们调用了 `printMessage()` 函数来输出信息。`void` 表示这个函数不返回任何值。`printf()` 是一个在 C 语言中用于输出文本的函数,可以将任何格式的文本输出到标准输出设备(通常是屏幕)上。
C语言 存在字符串“this is a program test.”和“aeio”,删除前者中后者有的字符
可以使用C语言中的字符串操作函数strchr()和strcat()来实现。具体代码如下:
```c
#include <stdio.h>
#include <string.h>
int main()
{
char str1[] = "this is a program test.";
char str2[] = "aeio";
char *p;
for (int i = 0; i < strlen(str2); i++) {
p = strchr(str1, str2[i]);
while (p != NULL) {
memmove(p, p + 1, strlen(p));
p = strchr(p, str2[i]);
}
}
printf("%s\n", str1);
return 0;
}
```
运行结果为:"ths s prgrm tst.",即删除了字符串中所有出现在str2中的字符。
阅读全文