First of all, sorry if someone already asked about this question.
I did search about this first, but couldn't find one.
I used to see some people doing something like this:
if ( // a certain conditions here ) {
error("ERROR: not bla bla bla")
}
what is error(....)
? What is the difference with printf()
?
Why they aren't using printf("ERROR: not bla bla bla")
instead?
Thank you.