int num; char term; if(scanf("%d%c", &num, &term) != 2 || term != ' ') printf("failure "); else printf("valid integer followed by enter key ");