Can anybody offer me a tutorial that contains information abour parsing arguments of function like this:
int pprintf (char *format, ... );
It does the same work as printf, but instead of value, it receives a pointer.
int a = 10;
printf ("%d", a);
pprintf ("%d", &a);
Both does the same thing.
Thanks in advance.
int pprintf (char *format, ... );
It does the same work as printf, but instead of value, it receives a pointer.
int a = 10;
printf ("%d", a);
pprintf ("%d", &a);
Both does the same thing.
Thanks in advance.