C Tutorial/printf scanf/scanf star — различия между версиями
| Admin (обсуждение | вклад)  м (1 версия: Импорт контента...) | |
| (нет различий) | |
Текущая версия на 10:32, 25 мая 2010
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.
