If Programs
/*****************************************//* */
/* If... #1 */
/* */
/*****************************************/
#include
#define TRUE 1
#define FALSE 0
/******************************************/
main ()
{ int i;
if (TRUE)
{
printf ("This is always printed");
}
if (FALSE)
{
printf ("This is never printed");
}
}
0 comments:
Post a Comment