Hi,I know the usage of marquee.But i need to move the text from top to bottom.It is possible in <marquee> to bring from top to bottom?
<marquee>
Using direction attributes you can achieve this.
You can use direction="down" attributes will move from top to bottom
direction="down"
<!DOCTYPE html> <html> <body> <marquee style="height:100%;position:absolute;" direction="down"> <h1>Marquee From top to bottom</h1> </marquee> </body> </html>
See Reference about marquee -> http://way2tutorial.com/html/html_marquee_tag.php
Write a c program that rotate elements of an array by the value of configured number "n". For example: Input array[ ] = { 2, 3, 5, 6, 8, 9} value of n = 2 Output array[] = { 5, 6, 8, 9, 2, 3} I am looking for efficient program.
Return a version of the given string, where for every star (*) in string the star and thr chars immediately to its left and right are gone. So "ab*cd" yields "ad" and "ad**cd" also yields "ad".
Print an NxM matrix with nw-se diagonals starting at bottom left corner.
Input
1 2 3 4 5 6 7 8 9 10 11 12
Output
9 5 10 1 6 11 2 7 12 3 8 4