Close
To suscribe Cquery.h please enter your email below..
After suscribing kindly check your mail box immediately
to complete your suscription.
I don't want any update | Let me download
Cquery.h
Code less C fast..
Download v0.1
Cquery.h is written by a student of SSUET by keeping TURBOC compiler in his mind only.
All the code are copyrighted so please respect other's efforts :) and don't distribute Cquery.h with your name.
Thanks.

Friday, 11 April 2014

token_str(mode,speed,color,string)

token_str animates a string letter by letter.token_str takes four arguments

Understanding Arguments:

mode:


Mode is a first argument of type string.There are two mode as
  1. Original (It token and animates string without reversing the string)
  2. Reverse (It token and animates string after reversing the string)

Speed:


Second argument of type integer.Here you can set speed of animation.

Color:


Here you can set the color of string. Please read [this] page for information about colors in Cquery.

String:


Desired string to be animated.

Examples:


#include<cquery.h>
void main(void)
{
token_str("original",100,"orange","hellllllooooooo wooorrrllllddd");
printf("\n\n\");
token_str("reverse",100,"orange","hellllllooooooo wooorrrllllddd");
}

No comments:

Post a Comment