Questions tagged as 'argumento'

2
answers

How to use argc and argv in a windows terminal?

I'm creating a stack for valid expression checking, but it should be used in this int main( int argc, char **argv ) for input. I compiled and did not give any error, however I can not create an executable file through the prompt. And I al...
asked by 13.07.2017 / 14:46
1
answer

Powershell (new-object System.Net.WebClient) .DownloadFile Strings as Arguments

I have the following code that I use to download the last chromedriver to a specific folder: (new-object System.Net.WebClient).DownloadFile("https://chromedriver.storage.googleapis.com/$($ChromeDriverLatestVersion)/chromedriver_win32.zip", "...
asked by 28.11.2018 / 20:21
1
answer

Run-time error in C [closed]

Well, it's compiling everything ok, however, when I'm going to print the elements of the entire array tab [8] [8], which is a member of the lady structure, the compiler is somehow assigning numbers to this array, the which I do not know where th...
asked by 29.01.2017 / 08:38
2
answers

Name of the variable passed in the function argument

Situation I'm trying to develop this function function ve($var, $dieAfter = false){ $nomeDaVar = ????; echo '<pre>'; echo '$'.$nomeDaVar." = "; var_export($var); echo '</pre>'; if ($dieAfter){...
asked by 02.04.2015 / 17:03