Re: Help for designing outlines in c language



Walter Roberson wrote:
In article <44bbf805$1_3@xxxxxxxxxxxxxxxxxxxxxxxxx>,
Simon Biber <news@xxxxxxxxx> wrote:
Manmeet Mittal wrote:

I want to create menus and borders in c. How can make it. What r its codings.

puts(
"|------------------------|\n"
"| MAIN MENU |\n"
"|------------------------|\n"
"| 1. Add |\n"
"| 2. Subtract |\n"
"| 3. Multiply |\n"
"| 4. Quit |\n"
"|------------------------|\n");

That assumes a fixed width font, which is not a portable assumption.

It also assumes that the display is at least 26 wide by 8 high,
which is also not portable.

With a proportional font it will still work, but just look weird.

What hosted C environment has a display less than 26x8 characters?

My program will also work on teletype printer terminals -- it does not require a display.

--
Simon.
.



Relevant Pages

  • Re: How to show
    ... is hovered over by the selection tool cursor? ... set that to show the "Display Name", life would be grand. ...
    (comp.soft-sys.matlab)
  • Re: XP shows only 8 characters of (WEP) Network key.
    ... Walter Roberson wrote: ... > it is more secure to display a fixed number of mark characters than ...
    (comp.security.misc)
  • Re: etxtract feature from iris
    ... Walter Roberson wrote in message ... It wouldn't display the ... if isempty; error('Quotation server filesystem ... try to download images from following links ...
    (comp.soft-sys.matlab)
  • Re: size or message about inputdlg
    ... Il Yoon ... display something on the inputdlg. ...
    (comp.soft-sys.matlab)
  • Re: Help for designing outlines in c language
    ... Walter Roberson wrote: ... Simon Biber wrote: ... It also assumes that the display is at least 26 wide by 8 high, ... "menus and borders" in the way the OP presumably intends in portable C, ...
    (comp.lang.c)