mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-05-22 14:20:59 +00:00
Remove bad description of function prototypes.
This commit is contained in:
parent
bb4f644a19
commit
5c7f6d70b9
@ -420,12 +420,6 @@ int add_two_ints(int x1, int x2)
|
|||||||
return x1 + x2; // Use return to return a value
|
return x1 + x2; // Use return to return a value
|
||||||
}
|
}
|
||||||
|
|
||||||
//if function takes no parameters, do:
|
|
||||||
int getInt(void); for function prototype
|
|
||||||
// and for the function declaration:
|
|
||||||
int getInt(void) {}
|
|
||||||
// (this is to keep compatibility with older versions of C).
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Functions are call by value. So when a function is called, the arguments passed
|
Functions are call by value. So when a function is called, the arguments passed
|
||||||
to the function are copies of original arguments (except arrays). Anything you
|
to the function are copies of original arguments (except arrays). Anything you
|
||||||
|
Loading…
Reference in New Issue
Block a user