Hi ATHMESH NANDAKUMAR,
What the clockout code you have wrote? Maybe your clkout code also have problems.
Please check following code, my system clock is 72Mhz, and I use PIO1_0 pin to output the system clock.
Chip_SWM_Init();
Chip_GPIO_Init(LPC_GPIO);
Chip_SWM_MovablePortPinAssign(SWM_CLK_OUT_O, 1, 0);
Chip_IOCON_PinMuxSet(LPC_IOCON, 1, 0, (IOCON_MODE_INACT | IOCON_DIGMODE_EN));
LPC_SYSCTL->CLKOUTSEL[0] = 3;
LPC_SYSCTL->CLKOUTSEL[1] = 0;
LPC_SYSCTL->CLKOUTDIV = 1;
Then this is the test result:

You can find it is about 72Mhz.
So, please double check your clock out code again, I test it based on the lpcopen code, actually, the lpcopen code also have a periph project named as clkout, you also can refer to it.
Have a great day,
Kerry
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------