首页 > 其他 > 详细

const的学习记录

时间:2015-02-05 07:11:27      阅读:204      评论:0      收藏:0      [点我收藏+]
#include <stdio.h>

void sp_to_dish (const char *str);

void main ()
{
	sp_to_dish ("this is an apple");
}

void sp_to_dish (const char *str)
{
	while (*str)
	{
	if (*str == ‘ ‘)
		printf ("-");//此处不能用*str = "-",会提示错误const定义变量的值无法更改
	else printf ("%c",*str);
	str++;
	}
	printf ("\n");
}


const的学习记录

原文:http://8102481.blog.51cto.com/8092481/1611604

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!