标题: 我想运行程序如下对比两个字符串长度然后输出长度较长的一个运行不了 [打印本页] 作者: 泡面 时间: 2016-01-12 10:44 标题: 我想运行程序如下对比两个字符串长度然后输出长度较长的一个运行不了 #include<iostream>
#include<string.h>
#include<stdio.h>
int main(void)
{
int c,d;
char*a;
char*b;
scanf("%s,%s",&a,&b);
c=strlen(a);
d=strlen(b);
if (c>d)
printf("%s",a);
if (d<c)
printf("%s",b);
return 0;
}
求指点 作者: 清泛网 时间: 2016-01-12 11:27
报错:error C4996: 'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.