Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
variable arguments 2
#include <stdlib.h> #include <stdarg.h> #include <stdio.h> extern int maxof(int, ...); extern void f(void); int main() { f(); return 0; } int maxof(int n_args, ...) { register int i; int max; int a; va_list ap; va_start(ap, n_args); max = va_arg(ap, int); for(i = 2; i <= n_args; i++) { if ( (a = va_arg(ap, int)) > max) { max = a; } } va_end(ap); return max; } void f(void) { int i = 5; int j[256]; j[42] = 24; printf("%d\n", maxof(3, i, j[42], 0) ); }
run
|
edit
|
history
|
help
0
No warnings!!!
project 5 v.075
2-dimension array got area by malloc()
Linked List
child process
A_141117_Primo01
Type struct
B_141202_PALINDROMO
B_141125_Burbuja
void *