/*WAP to # define statement used to replace entire C statement */
#include<stdio.h>
#define FOUND printf ( "The Yankee Doodle Virus" ) ;
main( )
{
char signature ;
if ( signature == 'Y' )
FOUND
else
printf ( "Safe... as yet !" ) ;
getch();
}
No comments:
Post a Comment