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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,38c827f7e800d317 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-07-05 10:06:49 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!postnews1.google.com!not-for-mail From: aek@vib.usr.pu.ru (Alexander Kopilovitch) Newsgroups: comp.lang.ada Subject: Re: conversion Date: 5 Jul 2003 10:06:48 -0700 Organization: http://groups.google.com/ Message-ID: References: <3EFCC18B.4040904@attbi.com> NNTP-Posting-Host: 195.242.16.21 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1057424809 19456 127.0.0.1 (5 Jul 2003 17:06:49 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 5 Jul 2003 17:06:49 GMT Xref: archiver1.google.com comp.lang.ada:40080 Date: 2003-07-05T17:06:49+00:00 List-Id: Georg Bauhaus wrote: > > The varying strings of unspecified maximum size are common for many applications > > outside of current, quite restricted Ada world. And arrays of such strings > > are no less common. > >Care to list some examples? /* C/C++ example */ char *Titles[] = { "Quizionary", "Nose To Nose", "Myself", "General Dissent", "Veteran's Opinion", "Corporate Science Weekly", "Truth, Wealth, Health", "Bribery Times" }; { Object Pascal example } const Dishes : array [1..4] of String = ( 'black pudding', 'crab soup', 'steak & kidney pie', 'lemon tart' ); Alexander Kopilovitch aek@vib.usr.pu.ru Saint-Petersburg Russia