In **Compiling Programs That Use the CUPS API** section, for running the code snippet with C the command wriiten is: > gcc -o **simple** `cups-config --cflags` **simple.c** `cups-config --libs` **./simple** but it should be > gcc -o **sample** `cups-config --cflags` **sample.c** `cups-config --libs` **./sample** as the C file name is sample.c .
In Compiling Programs That Use the CUPS API section, for running the code snippet with C
the command wriiten is:
but it should be
as the C file name is sample.c .