I'm taking a security course and am having trouble understanding this code due to a lack of understanding of the C programming language.
printf ("%08x.%08x.%08x.%08x|%s|");
I was told that this code should move along the stack until a pointer to a function is found.
I thought the .
was just an indicator of precision of output, so I don't know what this means in this context since there are indicators of precision?
Also, I don't understand what the |
means, and I can't find it in the C documentation.
.
and a|
respectively..
it knows it has parsed the specifier%08x
completely, so until it sees another%
everything is just a literal string to print.