c语言中子函数的字符值传到主函数
在C语言中,可以通过将字符值作为返回值来将子函数的字符值传递到主函数中。例如:
#include <stdio.h>
char getChar() {
char c = 'a';
return c;
}
int main() {
char c = getChar();
printf("The character is %c", c);
return 0;
}
在上面的例子中,getChar()函数返回一个字符值'a',并将其赋值给c变量。然后,在主函数中,getChar()函数被调用,并将返回的字符值赋值给c变量。最后,使用printf()函数输出c变量的值,即字符值'a'。
原文地址: https://www.cveoy.top/t/topic/ch93 著作权归作者所有。请勿转载和采集!