473,395 Members | 1,986 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

passing command line argument to array

Good evening,

I would like to pass the size of an array from the commandline.

int main(int argc, int *argv[]) {
....
max=*argv[1];

int list[max];
....

This does not work, because the size should be a constant.

How can I work around this? I tried const or static, nothing works.

Thank you,

Ernst
May 4 '07 #1
6 6902
In article <f1*************@news.t-online.com>,
virgincita schmidtmann <do*******@t-online.dewrote:
>I would like to pass the size of an array from the commandline.
>int main(int argc, int *argv[]) {
...
max=*argv[1];
int list[max];
...
>This does not work, because the size should be a constant.
>How can I work around this? I tried const or static, nothing works.
What you propose is not legal in C89, but is (if I understand
correctly) legal in C99 "variable length arrays".

In C89, what you need to do is malloc() the space you need and
store the returned pointer. int *list = malloc(max * sizeof int)
--
Okay, buzzwords only. Two syllables, tops. -- Laurie Anderson
May 4 '07 #2
On Fri, 4 May 2007 22:33:25 +0200, "virgincita schmidtmann"
<do*******@t-online.dewrote:
>Good evening,

I would like to pass the size of an array from the commandline.

int main(int argc, int *argv[]) {
...
max=*argv[1];

int list[max];
Even under a C99 compiler, this will not do what you want. *argv[1]
is, by definition, a character. If it happened to be the character
'2' and you run this on an ASCII system, it will define an array of 50
int. And if the command line argument was the value "75", you would
not allocate enough space. On an EBCDIC system, '2' would produce an
array 242 int.
>...

This does not work, because the size should be a constant.
This is true in C89 but C99 does allow variable length arrays.
>
How can I work around this? I tried const or static, nothing works.
Since you don't have a C99 compiler, the solution is in two parts:

First convert the data argv1 points at to an integer. strtol
would be the method of choice because it provides a convenient method
for error checking.

Second, allocate memory for the desired array and store the
address of this memory in a pointer. malloc is a good choice here.
You can then refer to elements of the array using normal array
notation such as ptr[i].
Remove del for email
May 5 '07 #3
virgincita schmidtmann wrote:
Good evening,

I would like to pass the size of an array from the commandline.

int main(int argc, int *argv[]) {
...
max=*argv[1];

int list[max];
...

This does not work, because the size should be a constant.

How can I work around this? I tried const or static, nothing works.

Thank you,

Ernst

Create a dynamic array with malloc?

int *list;
int max;
max = atoi(argv[1]);
list = malloc(max * sizeof *list);

The above is not a program, it is only a clue. The task is yours.

--
Joe Wright
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
May 5 '07 #4
Thank you all!

1. Mhmm. If I allocate memory to a pointer, can I use this pointer
without defining an array?

I think, array is a pointer to the first element of the array. Memory
size from malloc and list[] is the same. Does the compiler have to
know the size of an element in the array?

2. In the past I took integer arguments from the commandline by
defining argv[] as int. Well, there is a problem with argv[0], because
it is definitely the name of the program. But if I don't use it?

3. I am not really sure, if I need a variable length array.

However, I will try it.

Best regards,

Ernst

Barry Schwarz wrote:
On Fri, 4 May 2007 22:33:25 +0200, "virgincita schmidtmann"
<do*******@t-online.dewrote:

>>Good evening,

I would like to pass the size of an array from the commandline.

int main(int argc, int *argv[]) {
...
max=*argv[1];

int list[max];


Even under a C99 compiler, this will not do what you want. *argv[1]
is, by definition, a character. If it happened to be the character
'2' and you run this on an ASCII system, it will define an array of 50
int. And if the command line argument was the value "75", you would
not allocate enough space. On an EBCDIC system, '2' would produce an
array 242 int.

>>...

This does not work, because the size should be a constant.


This is true in C89 but C99 does allow variable length arrays.

>>How can I work around this? I tried const or static, nothing works.


Since you don't have a C99 compiler, the solution is in two parts:

First convert the data argv1 points at to an integer. strtol
would be the method of choice because it provides a convenient method
for error checking.

Second, allocate memory for the desired array and store the
address of this memory in a pointer. malloc is a good choice here.
You can then refer to elements of the array using normal array
notation such as ptr[i].
Remove del for email
May 5 '07 #5
Please don't top-post. Put what you're replying below what you cite
from the previous post.

Ernst Schmidtmann <do*******@ulcus.owl.dewrote:
1. Mhmm. If I allocate memory to a pointer, can I use this pointer
without defining an array?
You don't allocate "momory to a pointer", you allocate memory and
assign the address you receive from malloc() to a pointer. And
yes, of course, you can then use the pointer to access the
memory you allocated in an array-like fashion using the pointer.
I think, array is a pointer to the first element of the array.
Definitely not. An array is an array, not a pointer. Only when
the compiler finds an array in a place where a value is required
the array is replaced by a pointer to the first element of the
array. This happens e.g. when an array is used as a function
argument since in C all function arguments are passed by value
but an array isn't a value. And thus in this situation it gets
converted to a value, which is the address of its first element.
Memory
size from malloc and list[] is the same. Does the compiler have to
know the size of an element in the array?
If you create an array the compiler alreays knows the size
of the elements from the type of the array. But if you call
malloc() you need to tell malloc() exactly how much memory
you need, e.g. for enough memory to store 75 ints you do

int *ip;
ip = malloc( 75 * sizeof *ip );

where 'sizeof *ip' is the number of bytes required for the
type 'ip' points to, in this case the number of bytes needed
to store an int.
2. In the past I took integer arguments from the commandline by
defining argv[] as int. Well, there is a problem with argv[0], because
it is definitely the name of the program. But if I don't use it?
Then you did something wrong. The elements of argv are all
pointers to strings, pointing to strings with the command
line arguments (except argv[0] and the very last element,
which is always NULL). So if your first command line argu-
ment was 2 then argv[1] points to the string "2". And if
you now do

int max = *argv[1];

then you assign to 'max' the numerical value of the character
'2' and _not_ the integer value 2. And if the command line
argument had been 75 the argv[1] would point to the string
"75" and with the above assignment you would assign the
numerical value of the character '7' to 'max' and neither
the integer value 7 nor 75. You first have to convert the
string you got to an integer, using e.g. strtol().
3. I am not really sure, if I need a variable length array.
If you need memory with a size that only can be determined at
run-time and not already when the program gets compiled then
you either need a variable length array (which requires a com-
piler that implements at least this part of C99) or you must
obtain the memory via malloc().

Regards, Jens
--
\ Jens Thoms Toerring ___ jt@toerring.de
\__________________________ http://toerring.de
May 5 '07 #6
On May 5, 8:33 am, "virgincita schmidtmann" <doc.er...@t-online.de>
wrote:
>
int main(int argc, int *argv[]) {
This is an error. Not sure why nobody else noticed it;
perhaps they subconsciously filitered it out !

The second argument to main must have 'char' where
you current have 'int'. Who knows what your compiler
is doing with that code. Probably not what you expect!

May 6 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Alex Vinokur | last post by:
Various forms of argument passing ================================= C/C++ Performance Tests ======================= Using C/C++ Program Perfometer...
3
by: domeceo | last post by:
can anyone tell me why I cannot pass values in a setTimeout function whenever I use this function it says "menu is undefined" after th alert. function imgOff(menu, num) { if (document.images) {...
3
by: Goh, Yong Kwang | last post by:
I'm trying to create a function that given a string, tokenize it and put into a dynamically-sized array of char* which is in turn also dynamically allocated based on the string token length. I...
5
by: jlea | last post by:
I'm trying to pass a filename, obtained with using the fileName property from the OpenFileDialog, as a application parameter in Process.StartInfo.Arguments and run a MFC/C++ application using the...
2
by: pyrexia | last post by:
Greets all. I'm attempting to write an app that will be used as a 'control/launcher' application for other apps. For the sake of argument let's say the app is launched from a command line: ...
34
by: Roman Mashak | last post by:
Hello, All! I'm implementing simple CLI (flat model, no tree-style menu etc.). Command line looks like this: <command> <param1> <param2> ... <paramN> (where N=1..4) And idea is pretty simple: ...
6
by: =?Utf-8?B?Rm9ycmVzdCBIZWxsZXI=?= | last post by:
The only code that is helpful is this: fp = New IO.StreamReader(filename, New System.Text.UnicodeEncoding(True, False), False) If I pass a command line argument to my program that is not from...
2
by: william.w.oneill | last post by:
I have an application that takes a few command line parameters. As recommended by others in this group, I'm using a named mutex to ensure that only one instance of the application is running. My...
4
by: lilyumestar | last post by:
I have project I have to do for class. We have to write 4 different .java files. Project2.java HouseGUI.java House.java HouseSorting.java I already finish House.java and I need to work on...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.