How to Find running process in c

#include <stdio.h>
#include <process.h>
int main( )
{
printf ( "The process identification number of this program is %X\n",getpid( ) ) ;
system("pause");
}