A format specifier: how to print the data : printf Basics « printf scanf « C Tutorial






%d is one of the format specifiers for integer.

#include <stdio.h>
main(){
    int i,j,k;
   
    i = 6;    
    j = 8;
    k = i + j;
   
    printf("sum of two numbers is %d \n",k);
}
sum of two numbers is 14








4.1.printf Basics
4.1.1.The printf Function
4.1.2.The printf() Conversion Characters and flags
4.1.3.Placeholders
4.1.4.d, i: Signed integers
4.1.5.printf() Escape Sequences
4.1.6.The printf() function redirects the output to a standard output, which is the output on screen
4.1.7.A format specifier: how to print the data
4.1.8.Use multiple conversion specifiers in a single printf statement
4.1.9.Do calculation in printf