Day#83 C' Coding Challenge

Day#83 C' Coding Challenge

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; 
}

Post a Comment

0 Comments