
Help: how do get the ethernet (mac) address in c
: how I can get the ethernet (mac) address in c on SGI (IRIX5.x) and
: MSVC41 ?
In standard C, which is what this newsgroup is about, it generally
involves:
void get_ethernet_address()
{
...
printf("What's your Ethernet address?");
scanf("%d.%d.%d.%d.%d.%d", ...);
...
Quote:
}
The answer you are actually looking for, in other words, is better
asked in the appropriate newsgroup that contain platform-specific
discussions. Try comp.programmer.unix or some of the MS-DOS programmer
newsgroups.