C 返回字符串(指针类) 需要注意的地方

时间:2022-07-20 04:51:37

在写c程序的时候,发现了一点需要注意的问题,在这里记录一下

函数返回值问题

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

char *getString(){
	//static char str[10]={'a','b','c','d','e','f','g','h','i','\0'};	// (1)
	char *str="abcdefghi";									// (2)
	//char *str={'a','b','c','d','e','f','g','h','i','\0'};		// (3)
	printf("%s\n",str);
	return str;
} 

int main(){
	char *s;
	s=getString();
	printf("%d\n",strlen(s));
	printf("%s\n",s);
}


如果第(1)句,没有static的话,编译时会提示warning: address of local variable `str' returned 之类的,总之就是说返回了局部变量的地址。局部变量在函数执行完之后会被释放,你可能得不到你想要的结果,返回的结果可能是一串乱码。加上static可以解决这个问题。

第(2)句,没有问题,能够正常返回,而且编译时没有警告。

第(3)句,报错了,提示 error: initializer for scalar variable requires one element      看来指针变量不能用初始化数组的方式初始化。

还试了一下:

char *str;
str=(char *)malloc(10);
str={'a','b','c','d','e','f','g','h','i','\0'};

这样也不行。提示:

error: expected primary-expression before '{' token

 error: expected `;' before '{' token