Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.std.c > #6215

Re: Problems with Parametric Macros

From Hans-Bernhard Bröker <HBBroeker@t-online.de>
Newsgroups comp.std.c
Subject Re: Problems with Parametric Macros
Date 2021-02-07 21:11 +0100
Message-ID <i8avshFs03eU1@mid.dfncis.de> (permalink)
References <db004614-55ee-4b5f-87c8-ed2513358d15n@googlegroups.com>

Show all headers | View raw


Am 07.02.2021 um 18:30 schrieb emanuele cannizzo:
> In my code I have a lot of vectors with a similar name:
> vector1, vector2, vector3, vector4, ...

Don't do that.  As a rule of thumb, whenever you feel the urge to put 
running numbers of things into the name of things, you're almost 
certainly missing out on the obvious solution to make an array out of 
those things, instead, turning that number into an array index.

You want

vectortype vector[10];  // or however many of these you need

Either that, you or you need to get up to speed with pointers to 
"vectortype" things.

Back to comp.std.c | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Problems with Parametric Macros emanuele cannizzo <emacannizzo@gmail.com> - 2021-02-07 09:30 -0800
  Re: Problems with Parametric Macros James Kuyper <jameskuyper@alumni.caltech.edu> - 2021-02-07 13:27 -0500
  Re: Problems with Parametric Macros Hans-Bernhard Bröker <HBBroeker@t-online.de> - 2021-02-07 21:11 +0100

csiph-web