$cat x00 A for Apple. B for Baby. $cat x01 C for Cat. D for Donkey. $tac x00 x01 B for Baby. A for Apple. D for Donkey. C for Cat. $ tac – concatenate and print files in reverse
Tag Archives: print
print with delay 0.1
/* Jeffrin Jose Licensed GPL v3 Copyright 2010 GPL –> http://www.gnu.org/copyleft/gpl.html */ #include #include int main() { int seconds; int i=0; char array[20]=”Happy Friendship Day”; /* printf(“n Happy Friendship Day n”); */ for(i=0;i<20;i++) { printf("%c",array[i]); /* for(seconds=0;seconds<100000000;seconds++);*/ /* system("sleep 1s");*/ sleep(1); /* Delay not Properly Implemented . FIXME. */ } printf("n"); return 0; }