如何使用我的 while 循环条件运行我自己的原型函数?
#include <stdio.h>
#include <conio.h>
#include <string.h>
msghere(char *text){
printf("%s",text);
return 0;
}
void main(){
char inp[256]={0};
clrscr();
while( strcmp(inp,"pass") && msghere("Error!")){
memset(inp,0,strlen(inp));
printf("Type \"pass\": ");
gets(inp);
}
msghere("Right Answer!");
getch();
}
此代码打印以下输出:
Error!Right Answer!