问题 I am very new to socket programming, and i am trying to send over TCP connection but getting few errors. here is my code FILE* File; char* Buffer; unsigned long Size; File = fopen("C:\\test.zip", "rb"); if (!File) { printf("Error while readaing the file\n"); return; } // file size 1 fseek(File, 0, SEEK_END); Size = ftell(File); fseek(File, 0, SEEK_SET); Buffer = new char[Size]; fread(Buffer, Size, 1, File); char cSize[MAX_PATH]; sprintf(cSize, "%i", Size); cout << "MAX PATH " << MAX_PATH<