home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / SCANF.C < prev    next >
Encoding:
Text File  |  1985-01-24  |  351 b   |  11 lines

  1. main() /* scanf.c --  function example of scanf() */
  2. {
  3.     int ret;
  4.     int i;
  5.     float x;
  6.     char name[50];
  7.     puts("Scanf is looking for a decimal number, a floating point, and a string no greater than 50 characters -- sorry, no spaces in string.");
  8.     ret = scanf("%d %f %s", &i, &x, name);
  9.     printf("%d returned values: %d %f %s", ret, i, x, name);
  10. }
  11.