Write a client and server program in C language using UDP,
where client program interact with the Server as given
below:

i) The client begins by sending a request to send a
string of 8 characters or series of 7 numbers, the server
sends back a characters or numbers as per the request of
the client.
ii) In case of series of 7 numbers: The client sends a
multiplication of numbers, to the server.
iii) In case of a string of 8 characters: The client sends
a reverse order of string to the server..
iv) Server will send an acknowledgment to the client after
receiving the correct answer


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is difference between main and void main?

0 Answers  


explain what are pointers?

0 Answers  


Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff

0 Answers  


What is wild pointer in c with example?

0 Answers  


Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments

6 Answers   TCS,






Why use int main instead of void main?

0 Answers  


Where local variables are stored in c?

0 Answers  


what is default constructor?

2 Answers   HCL,


wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }

3 Answers  


What is identifiers in c with examples?

0 Answers  


What are the 4 types of functions?

0 Answers  


Why enum is used in c?

0 Answers  


Categories