我在visual studio 2013中运行此程序,但它正在打印奇怪的字符。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct{
char first[11];
char second[11];
}INFO;
char * str1;
char * str2;
int num;
void bar_function(INFO info)
{
str1 = info.first;
str2 = info.second;
num = 100;
printf("%s %s\n", str1, str2);
}
void print()
{
printf("%s %s\n", str1, str2);
printf("%d\n", num);
}
int main(void)
{
INFO info;
strcpy(info.first, "Hello ");
strcpy(info.second, "World!");
bar_function(info);
print();
system("pause");
return 0;
}
在 bar_function 函数中,我正在为全局变量赋值并打印字符串。它打印正确的输出。但是当我在 打印 功能中打印相同的字符串时,它会在 visual studio 2013 的输出中打印奇怪的字符。同时 num 变量在 print 功能中打印正确的值。这是相同的输出。
Hello World!
╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠─²F╠╠╠╠╠─²F
100
此外,相同的程序在Codeblocks中正常工作并打印正确的值。
我无法理解visual studio中这种奇怪的行为。有人可以解释一下。
答案 0 :(得分:5)
在bar_function
中,变量info
是局部变量,因此当函数返回时,它将超出范围并停止存在。
这意味着指向数组的指针将变为无效,取消引用它们将导致undefined behavior。
由于你声明是编程C ++,你应该使用std::string
来代替字符串,而不是指针或数组。当然,尽可能避免全局变量。