It looks like you're new here. If you want to get involved, click one of these buttons!
#include<stdio.h>
#include<signal.h>
void sighandler(char signum);
int main()
{
signal(SIGINT,(void*)sighandler);
while(1)
printf(\"iexploit.org\");
}
void sighandler(char signum)
{
printf(\"SIGINT received.Insisde sighandler\n\");
}