当前位置: 代码迷 >> C语言 >> [求助]数组在函数中的传递
  详细解决方案

[求助]数组在函数中的传递

热度:347   发布时间:2007-06-13 13:39:32.0
[求助]数组在函数中的传递

#include <stdio.h>
char a[10];
void inif(char a[])
{
a[1]='1';a[2]='2';a[3]='3';
}
void Judge(char a,char b,char c) //改变a[1],a[2],a[3]的值
{

a='1';a='2';a='3';
}
void computer_step(char a[])
{
Judge(a[1],a[2],a[3]);
}
void main() //程序入口
{
inif(a);
computer_step(a);
printf("%c",a[1]);
printf("%c",a[2]);
printf("%c",a[3]);
}

怎么才能改变a[1],a[2],a[3]的值?

搜索更多相关的解决方案: 函数  

----------------解决方案--------------------------------------------------------

#include <stdio.h>
char a[10];
void inif()
{
a[1]='1';a[2]='2';a[3]='3';
}
void Judge() //改变a[1],a[2],a[3]的值
{

a[1]='1';a[2]='2';a[3]='3';
}
void computer_step()
{
Judge();
}
void main() //程序入口
{
inif();
computer_step();
printf("%c",a[1]);
printf("%c",a[2]);
printf("%c",a[3]);
}

不用参数就可以达成了

[此贴子已经被作者于2007-6-13 17:53:06编辑过]


----------------解决方案--------------------------------------------------------
  相关解决方案