#include <string.h> int main() { char str[]="antichat"; char x[20]; memset(x, 0, sizeof(x)); strncpy(x,str,5); printf("%s",x); return 0; }