From: "Ed Collins" Newsgroups: comp.os.msdos.djgpp Subject: printf Lines: 19 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Message-ID: Date: Fri, 20 Oct 2000 20:01:47 GMT NNTP-Posting-Host: 24.129.35.154 X-Complaints-To: abuse AT mediaone DOT net X-Trace: typhoon.jacksonville.mediaone.net 972072107 24.129.35.154 (Fri, 20 Oct 2000 16:01:47 EDT) NNTP-Posting-Date: Fri, 20 Oct 2000 16:01:47 EDT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Hello, there When executing a C program in rhide under Windows98, I cannot get the printf function to work. Nothing is printed to the User Screen. Am I doing something wrong? Here is a sample of the code. tablestruc[0].symbol = "APPLE"; tablestruc[0].symbval = 0X123; tablestruc[0].symbinfo = 17; printf("%s, %x, %d", tablestruc[0].symbol,tablestruc[0].symbval,tablestruc[0].symbinfo); I would certainly appreciate anyone's comments. ed.