Format Specifiers in C
In this article you will get list of format specifiers in C. Format specifier is used to specify the data type while reading or writing. For example if you want to print value of an integer type variable then you have to use %d in printf() function. Take below example. #include<stdio.h> int main(){ int a; …
