Friday, December 10, 2010

Using Escape Sequence

#include <stdio.h>
int main(void)
{
    printf("\tANIKA\n");
    printf("\?\?JAKIR\?\?\n");
    printf("\"ANIKA+JAKIR\"");
    system("pause");
    return 0;
}



This is the output:

ANIKA
??JAKIR??
"ANIKA+JAKIR"

0 comments: