Mastering Standard C Book - Page Reference ---------------------------------------------- Original Rev. 1-Dec-2021 Current Rev. 27-Dec-2021 data types 11 math.h 79 mathlib 317 modulus operator % 72 FILE * 163 fopen 163 319 getc 169 gets 54 164 320 fgetc 169 fgets 55 164 319 printf 7, 170 printf display masks 10, 12, 15, 19, 24, 28, 31, 44, 136, 171 -- fscanf 173 fscanf edit masks 175 escape sequences 341 string manipulating routines 53 command line arguments 153, 166 exit 4, 36, 322 if if else 31 include int main() { const char *str = "12345"; int x; sscanf(str, "%d", &x); printf("\nThe value of x : %d", x); return 0; }