#include <stdio.h>
#include <conio.h>
int main(void)
{
unsigned port = 0;
int value;
value = outp(port, 'C');
printf("Value %c sent to port number %d\n", value, port);
return 0;
}
It gives error
8 C:\Dev-Cpp\Abc\... `outp' undeclared (first use this function)
How to solve this ??
I write function in conio.h but it can't work...
Any one know correct function to declare outp in conio.h??
Plz help me...Thanks in advance