Hi, Kumar,
This code route the CLKOUT_0 signal to PIO0_19, but I do not test it, pls have a try.
BR
XiangJun Rong
#include "fsl_SWM_connections.h"
#include "fsl_swm.h"
void ClkoutPinAssignment(void);
void ClkoutPinAssignment(void)
{
//enable SWM clock
CLOCK_EnableClock(kCLOCK_Swm);
//output CLKOUT signal to PIO19
SWM_SetMovablePinSelect(SWM0,kSWM_CLKOUT,kSWM_PortPin_P0_19);
}