クライアント (パイソン):
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ファイルを作成するにはどうすればよいですか??? this in c (data=struct.pack('
クライアント (c):
??