guys...i want to ask this again...

regarding the concatenation of integer with a string...
i still get a SEGMENTATION FAULT ERROR!!!

i already calloc(ED) the string...why is this happening? thanks again...

what i did is

void sendMessage (char ........end, char *host, int port)
{
printf ("it reached this part"); //it reached this part but a
//segmentation fault occured on the next line
sprintf (ssend,"%s:%d:%s",host,port,ssend)
while (1)
{
rd = sendto(....)
}
}