- [code=c]
- int main(int argc, char *argv[])
- {
- srand( (unsigned)time(NULL) );
- srand( rand()*time(NULL) );
- StartSignal( );
- }
- [/code]
Example for C / C++ code:
Gives:
- int main(int argc, char *argv[])
- {
- srand( (unsigned)time(NULL) );
- srand( rand()*time(NULL) );
- StartSignal( );
- }
For PHP:
- [code=php]
- <?php
- /**
- * test
- *
- */
- define('DIR_AUTH', dirname(__FILE__));
- echo("this is a test");
- ?>
- [/code]
Gives: