VMware从Windows主机拷贝文件到Ubuntu为什么会有缺失?

如图,原本是完整的C文件,拷贝之后后面缺了一段。请问是什么原因?VMware版本15.0.0 build-10134415,Ubuntu版本Ubuntu 18.04.1 LTS。图片说明

原代码:
#include
#include
#include
#include
#include

int main(int argc, char *argv[])
{
struct in_addr addr;

if (argc != 2) 
{
    fprintf(stderr, "%s <dotted-address>\n", argv[0]);
    exit(EXIT_FAILURE);
}

if (inet_aton(argv[1], &addr) == 0) 
{
    fprintf(stderr, "Invalid address\n");
    exit(EXIT_FAILURE);
}

printf("%s\n", inet_ntoa(addr));
exit(EXIT_SUCCESS);

}

应该和你的代码没有关系,是剪贴板大小有限制,你安装虚拟机增强工具了没有?安装下看看。