In UDP socket programming, does it matter if sender program is written in C and receiver program is written in Python? I mean to ask does it matter if sender or receiver programs are written in same or different language?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
UDP is just a protocol, like HTTP so as long as your applications are compliant with the protocol, there is no reason why they would not be able to communicate that way.
Of course, if the content of the message requires a specific library / method to be interpreted, that’s a different issue.