home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C Programming Starter Kit 2.0
/
SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso
/
tyc
/
list19_3.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-16
|
231b
|
17 lines
/* The assert() macro. */
#include <stdio.h>
#include <assert.h>
main()
{
int x;
printf("\nEnter an integer value: ");
scanf("%d", &x);
assert(x);
printf("You entered %d.", x);
}