PROGRAM
#include"stdio.h"main()
{
char a,b;
FILE *fp;
fp=fopen("code.txt","r");
if(fp==NULL)
{
printf("\nfile cannot open");
getch();
}
printf("\nplease input the code:");
scanf("%s",b);
fread(a,strlen(b),1,fp);
if(strcmp(b,a)==0)
{
printf("\nthe code is right!");
getch();
}
else
{
printf("\nwrong code!");
}
printf("%s",a);
getch();
}
正确代码如下:
#include "stdio.h"#include "conio.h"
#include "string.h"
void main(void)
{
char a,b;
FILE *fp;
fp=fopen("code.txt","r");
if(fp==NULL)
{
printf("\nfile cannot open");
getch();
}
printf("\nplease input the code:");
scanf("%s",b);
fread(a,strlen(b),1,fp);
////////////// 注意:下面这句不要忘记!字符串一定要以0字符结尾!
a=0;
//////////////
if(strcmp(b,a)==0)
{
printf("\nthe code is right!");
getch();
}
else
{
printf("\nwrong code!");
}
printf("%s",a);
getch();
}
什么玩意??????? 当然是 C 源代码了~~
呵呵~~ 字符是以0字符结尾呀!知道了。谢谢,我现在在学样跟外面比较脱节,想问一下学C语言的外面要不要?
什么是C的外面?
呵呵~ 我是指就业呀!我现在还有一年就要毕业了,我比较关心就业呀! 当然有用武之地了!
但要努力学习啊~~~~~~~
:) 现在软件开发,大部分是要你干什么呢?
可以联系你的实际说说嘛? 可以做很多内容啊~
比如我现在就在做数据库开发,用的是 VB。
只要有能力,没有找不到的工作!
:)
页:
[1]
2