Top

Discussion

Which character is used to separate different arguments?

  • A.#
  • B.$
  • C.space
  • D.|

Answer: C

Command line arguments are separated by space. So if you write
./output This is a single parameter
then they will interpreted as 5 command line arguments as shown : [“./output”, “This”, “is”, “single”, “parameter”].

No comment is present. Be the first to comment.
Loading…

Post your comment