10.一维字符数组——输出hello

文章目录

  • 前言
  • 一、题目描述
  • 二、解题
    • 程序运行代码


前言

本系列为一维字符数组编程题,点滴成长,一起逆袭。


一、题目描述

输出hello


二、解题

程序运行代码

#include
int main() {
	char c[5]={'h','e','l','l','o'};
	//char c[]="hello";    注意:c[>5]
	int i;
	for(i=0;i<5;i++){
		printf("%c",c[i]);//putchar(c[i]);
	}
	printf("\n");//putchar('\n');
	return 0;
}

你可能感兴趣的:(第六章数组,算法,开发语言,c语言)