Question : In PHP time the function sprintf . With it we can format the values sequentially passed from the […]
Tag: argumento
What is the difference between parameter and argument?
Question : I have always used the terms “parameter” and “argument” as if they were synonyms: what is passed to […]
How to pass an array as parameters or arguments?
Question : I have two functions: function example($param1, $param2) { echo $param1 . $param2; } function frutas($fruta1, $fruta2, $fruta3) { […]
How to fix this error “Can not convert from ‘int’ to ‘char []’
Question : Why is this error displayed? I believe the logic is right. Answer : Formatting output The first […]
Run Python file with arguments
Question : In my program, I do the following operation: import sys qtd_ponts = int(sys.argv[1]) I would like to know […]