Sunday 15 December 2013

C Program to Print a Semicolon without using a Semicolon anywhere in the Code

#include < stdio.h>
 
int main(void)
{
    //59 is the ascii value of semicolumn
    if (printf("%c ", 59))
    {
    }
    return 0;
}

Output


For More Details Please Visit Ictjobs.info

No comments: