C Tutorial/printf scanf/scanf star

Материал из C\C++ эксперт
Перейти к: навигация, поиск

scanf: skip the integer between the two strings

#include <stdio.h>
  int main(void)
  {
    char str[80], str2[80];
    int i;
    printf("skip the integer between the two strings:");
    scanf("%s%*d%s", str, str2);
    return 0;
  }

Use *

The * is used to suppress input.


scanf(" %d %*d %*d%*d %d ", &i, &j)

If your input is 10 20 30 40 50, i will get the value 10 and j will get the value 50.