hi just wanna ask how to transfer a file from a peer-to-peer wired connection a character input from a node to another node.
this is my simple code:
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int main()
{
char x;
printf("Enter a character: ");
scanf("%c", &x);
getche();
}
when the 1st user enter a character, it should be automatically displayed on another node.
have any idea? tnx