VS2015运行总输出空值(萌新求助)
vs2015吧
全部回复
仅看楼主
level 7
baby夜风00
楼主
#include"stdio.h"
#include"string.h"
void main(void)
{
char a[10] = "abcABC";
printf("%s\n", _strupr_s(a));
printf("%s\n", _strlwr_s(a));
}
2016年05月11日 10点05分
1
level 1
郭里奥
并不知道为啥,只是把文件改成下面就行了
#define _CRT_SECURE_NO_WARNINGS
#include"stdio.h"
#include"string.h"
void main(void)
{
char a[10] = "abcABC";
printf("%s\n", _strupr(a));
printf("%s\n", _strlwr(a));
}
2016年05月11日 15点05分
2
level 7
baby夜风00
楼主
大神啊
2016年05月13日 01点05分
3
level 7
baby夜风00
楼主
多谢
2016年05月13日 01点05分
4
level 7
baby夜风00
楼主
2016年05月13日 01点05分
5
1