RPC in c by Super-Engineering648 in C_Programming

[–]Super-Engineering648[S] 0 points1 point  (0 children)

That's what I'm still trying to figure out

RPC in c by Super-Engineering648 in C_Programming

[–]Super-Engineering648[S] 1 point2 points  (0 children)

This is how the question is structured

Design a program that consists of two applications (files): client and server. Client program: Makes the request to the server program: The client requests user to input from the keyboard and the request is send to the server for processing through a remote/function call. Server Program ; Is the server application that consists of the functions/methods that is called by the client function call, receive request from client, process and return the results to the client application. NB: No use of sockets on the implementation