home *** CD-ROM | disk | FTP | other *** search
- main() /* scanf.c -- function example of scanf() */
- {
- int ret;
- int i;
- float x;
- char name[50];
- puts("Scanf is looking for a decimal number, a floating point, and a string no greater than 50 characters -- sorry, no spaces in string.");
- ret = scanf("%d %f %s", &i, &x, name);
- printf("%d returned values: %d %f %s", ret, i, x, name);
- }