码迷,mamicode.com
首页 > 其他好文 > 详细

const的学习记录

时间:2015-02-05 07:13:00      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:c语言   const   

#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的学习记录

标签:c语言   const   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!