jjzcp
Experienced Member
Does any one know where i can get a c compiler that will work on my 486? It has to be able to run on dos 5, or win 3.0.
VCF West | Aug 01 - 02 2025, | CHM, Mountain View, CA |
VCF Midwest | Sep 13 - 14 2025, | Schaumburg, IL |
VCF Montreal | Jan 24 - 25, 2026, | RMC Saint Jean, Montreal, Canada |
VCF SoCal | Feb 14 - 15, 2026, | Hotel Fera, Orange CA |
VCF Southwest | May 29 - 31, 2026, | Westin Dallas Fort Worth Airport |
VCF Southeast | June, 2026 | Atlanta, GA |
??jjzcp said:I have a copy of turbo c but i don't care for it much
IpAddr_t is a typedef for unsigned char[4]
char *IP::formatAddress( IpAddr_t a, char *buffer ) {
sprintf( buffer, "%d.%d.%d.%d", a[0], a[1], a[2], a[3] );
return buffer;
}
void dummyFunc( void ) { puts(""); }
rest of code starts here ...