I'm actually just going to do something simple first, print the arguments to this function.
我实际上将要先做点简单的东西,打印函数的参数。
The only thing that you have to put in the function prototype, ; again, is three things; one, the name of the function; the return value; and its arguments.
你唯一要加入到函数原型中的东西,是有三个东西,一,函数的名字;,返回值,和它的参数。
Think of this as a function that takes two techs arguments, the first of which is univs and the second of which is techs. And this is just a different syntax for writing that function call.
想下有两个参数的函数,第一个是univs第二个是,这就是对于函数调用的,不同语法的书写规则。
I'm not wasting time typing out arguments and implementing more complicated function.
我不会在浪费时间在打印输出参数上,我执行了更复杂的程序。
So before we use printf, a function, and we passed in one input and input henceforth we're gonna call arguments or parameters.
我们在使用printf函数时,先放进去一个输入,之后的输入我们就要,调用参数了。
But it's the really correct way to specify that this function takes no arguments is to actually write this key word "void."
但是这的确是正确的方法来指明,这个函数是没有参数,实际上是写了这个关键字“void“
应用推荐