Post Reply 
HP 200 LX 2MB and Borland Turbo C 2.01
02-04-2019, 09:26 PM
Post: #5
RE: HP 200 LX 2MB and Borland Turbo C 2.01
(02-04-2019 05:06 PM)KeithB Wrote:  Have you tried it without the stdio.h?

stdio.h contains the prototype for printf() so you'll find it difficult compiling that!

This said, you could try omitting it but providing a prototype yourself. Something like this (untested):

Code:
int printf(char*);

int main()
{
  printf("Hello HP 200LX!");
  return 0;
}
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: HP 200 LX 2MB and Borland Turbo C 2.01 - grsbanks - 02-04-2019 09:26 PM



User(s) browsing this thread: 1 Guest(s)