客户端(蟒蛇):
theta = math.sin(23/3) / 300
y = math.cos(23/11) / 20
data=struct.pack('<ff',theta,y) # pack with two float
s.sendto(data, (ip, 50000))
服务器(蟒蛇):
daten, addr = s.recvfrom(1024) #
d=struct.unpack('<ff',daten)
print ("[%s] %s" % (d[0],d[1]))
--> 有效
我怎样才能使一个c文件作为客户端???这在 c (data=struct.pack('
客户(三):
??