in Programming in C recategorized by
6,247 views
2 votes
2 votes

The maximum combined length of the command-line arguments including the spaces between adjacent arguments is:

  1. $128$ characters
  2. $256$ characters
  3. $67$ characters
  4. It may very from one Operating System to another
in Programming in C recategorized by
by
6.2k views

2 Answers

1 vote
1 vote
ans : d . it vary from operating system to operating system
by
0 votes
0 votes

Answer C. It may vary from one operating system to another

 

Microsoft Windows NT Advanced server 3.1 and Microsoft Windows NT Workstation 3.1 accepts 128 characters

Windows NT 4.0 and Windows 200 accepts 2046 characters

Windows XP accepts 8191 characters

Likewise the number of characters that the command line can have differs for Windows, UNIX, LINUX, DOS etc. As we can see from the details given for Windows version, as the version changes the number command line arguments also change. The latest version always accepts more number of command line inputs

Answer:

Related questions