Characters in the format control string : printf format « printf scanf « C Tutorial






#include <stdio.h>

int main(void)
{
  int i = 0;
  int j = 0;
  int value_count = 0;
  float fp1 = 0.0;

  printf("Input:\n");
  value_count = scanf("fp1 = %f i = %d %d", &fp1, &i , &j);

  printf("\nOutput:\n");
  printf("\nCount of values read = %d", value_count);
  printf("\nfp1 = %f\ti = %d\tj = %d\n", fp1, i, j);
  return 0;
}
Input:
     2
     
     Output:
     
     Count of values read = 0
     fp1 = 0.000000  i = 0   j = 0








4.19.printf format
4.19.1.Characters in the format control string
4.19.2.Using the # flag with conversion specifiers o, x, X and any floating-point specifier