Printing values in C
To print a literal
printf("hello world")
To print a variable
int age = 25
print("%d", age)
The %d
is an example of a format specifier. It is the decimal integer format specifier.
printf("hello world")
int age = 25
print("%d", age)
The %d
is an example of a format specifier. It is the decimal integer format specifier.