views:

29

answers:

1

C++ Can I print the content of 1 or 2 dim array using Visual Studio's Command window? I guess it comes down to whether a "command window" support some kind of loop and print (?) syntax or not.

A: 

The visual studio command window is used to enter commands to the development environment, not for code execution. For example you could type 'open' so that VS shows the Open Dialog.

Kiranu