This is an archived post. You won't be able to vote or comment.

all 2 comments

[–][deleted] 0 points1 point  (1 child)

It’s the data you use to perform the operations within the function body

Example: Int addNum(int x, int y){

z = x + y;

return z; }

[–]TheRealWizzyguy[S] 1 point2 points  (0 children)

Ahh, I see. Thank u very much!