Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
5
Task/Function-prototype/C/function-prototype.c
Normal file
5
Task/Function-prototype/C/function-prototype.c
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
int noargs(void); /* Declare a function with no argument that returns an integer */
|
||||
int twoargs(int a,int b); /* Declare a function with two arguments that returns an integer */
|
||||
int twoargs(int ,int); /* Parameter names are optional in a prototype definition */
|
||||
int anyargs(); /* An empty parameter list can be used to declare a function that accepts varargs */
|
||||
int atleastoneargs(int, ...); /* One mandatory integer argument followed by varargs */
|
||||
Loading…
Add table
Add a link
Reference in a new issue