Why the following code is not good?

Code:
#include <stdlib.h>

int main( void )
{
  system ( "PAUSE" );

  return 0;
}
I thought system is from the standard library
Many thanks....