Я скомпилировал и выполнил следующий код c в компиляторе borland c ++.Он прекрасно работает в нем, но не работает в компиляторе Visual C ++ 6.0.какие изменения нужно сделать, чтобы он работал в Visual C ++ 6.0?
#include <stdio.h>
#include <string.h>
#include <conio.h>
#include <ctype.h>
int main()
{
char buffer[256] = {0};
char password[] = "password";
char c;
int pos = 0;
printf("%s", "Enter password: ");
do {
c = getch();
if( isprint(c) )
{
buffer[ pos++ ] = c;
printf("%c", '*');
}
else if( c == 8 && pos )
{
buffer[ --pos ] = '\0';
printf("%s", "\b \b");
}
} while( c != 13&& pos < 256 );
if( !strcmp(buffer, password) )
printf("\n%s\n", "Logged on succesfully!");
else
printf("\n%s\n", "Incorrect login!");
return 0;
}