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.

Thursday, 3 April 2014

wait(seconds)

wait is a Cquery function which takes an integer argument and hold the program execution.

Syntax:

wait(seconds) //seconds can be any integer number

Examples:


/** This program will close
 ** after two seconds
 **/
#include<cquery.h>
void main(void)
{
printf("I will close after 2 seconds");
wait(2);
}


/** This program will close
 ** after two seconds
 **/
#include<cquery.h>
void main(void)
{
int i = 5;
printf("I will close after 5 seconds");
wait(i);
}

No comments:

Post a Comment