L
lzh08
the code is following;
#include <bios.h>
#include <stdio.h>
void main()
{
int i;
i = bioskey();
return;
}
but after compiler,the error is:
Call to undefined function 'bioskey' in function main()
*** 1 errors in Compile ***
Borland C++ 5.2 for Win32 Copyright (c) 1993, 1997 Borland
International
why?
In the directory<include>,i found the file named with bios.h.
thx.
#include <bios.h>
#include <stdio.h>
void main()
{
int i;
i = bioskey();
return;
}
but after compiler,the error is:
Call to undefined function 'bioskey' in function main()
*** 1 errors in Compile ***
Borland C++ 5.2 for Win32 Copyright (c) 1993, 1997 Borland
International
why?
In the directory<include>,i found the file named with bios.h.
thx.