printf()

printf("Hello, World! %d\n", sum(10,20));

In this example, %d is a format specifier that tells printf to expect an integer argument, which is provided by the sum(10, 20) function call.

The result of sum(10, 20) will be printed in place of %d.