C语言如何输出computer单词?

在C语言中,输出字符串"computer"可以使用printf函数,以下是几种常见的方法:方法1:直接输出字符串#include<stdio.h>intmain(){printf("computer");return0;}输出:computer方法2:使用字符……

目录[+]