From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,LOTS_OF_MONEY autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6aa6d133611419f5 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-08-28 20:02:15 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!canoe.uoregon.edu!arclight.uoregon.edu!wn4feed!wn2feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!rwcrnsc51.ops.asp.att.net.POSTED!not-for-mail From: "SteveD" Newsgroups: comp.lang.ada References: <3D6688E1.3A1797CC@san.rr.com> <1030464758.505647@master.nyc.kbcfp.com> <7vu1lfbejt.fsf@vlinux.voxelvision.no> Subject: Re: Thought this was interesting X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: NNTP-Posting-Host: 12.225.227.101 X-Complaints-To: abuse@attbi.com X-Trace: rwcrnsc51.ops.asp.att.net 1030590134 12.225.227.101 (Thu, 29 Aug 2002 03:02:14 GMT) NNTP-Posting-Date: Thu, 29 Aug 2002 03:02:14 GMT Organization: AT&T Broadband Date: Thu, 29 Aug 2002 03:02:14 GMT Xref: archiver1.google.com comp.lang.ada:28540 Date: 2002-08-29T03:02:14+00:00 List-Id: "Jeffrey Creem" wrote in message news:dIeb9.113450$aA.24929@sccrnsc02... [snip] > > In any case, rest assured that a very similar C program produces the same > results. > This one produces the same result when compiled with Visual C++ 6.0 and run on W2k. Using streaming operations on cout does not cause the problem. Using puts instead of printf does not cause the problem. #include int main() { for( ; ; ) { printf( "Hung up!\t\b\b\b\b\b\b" ); } return 0; }