Write a simple C program to print a message "This is TalentEve" using both if and else statement.
-------------------------------------------------
#include <stdio.h>
#define TRUE 1
int main()
{
if(!printf("This is")) {}
else
printf(" TalentEve");
return TRUE;
}
0 Comments