Hello good pple of the forum
Now i have created a text file using c with the following code:
[PHP]main()
{
int id;
char firstname[20];
char lastname[20];
FILE *pt;
if((fp=fopen("c lient.txt","w") )==NULL)
{
puts("sorry can't open file");
}
else{
do{
scanf("%d %s %s", &id, firstname, lastname);
fprintf("%d...