time

Navigation:  Programming language SQC > Built-in functions > Time >

time

Previous pageReturn to chapter overviewNext page

The time() function gets the current calendar time as a value of type int.

 

int time( void )

 

Example:

 

void main ()

{

  int currenttime = time ();

  printf("now %d",currenttime);

}