Hello
in socket programming, how can I get the file decriptor for a remote client? Let me elucidate
I have a server, two clients are suppose to connect to that server and pass message between them. I am using UDP. From a client, the message goes to the server and the server sends the message to...
In C, Strings are just array of char type of variables. So,
char myString[100]
This will be handled by the compiler as a string of 99 characters and the last one 'should' be null. Null in C is defined as '\0'. If you read the characters by using scanf, then it wont put the terminating...
class test
{
void printLine()
{
System.out.println("Hello World");
}
}
class drive
{
public static void main(String args[])
{
test obTest[] = new test[10];
obTest[0].printLine();
}
}
My objective is to create an array of a class object and to work with it. The...
I have a text based database and it looks like this :
269,N,1,1,That's a good news
269,N,1,2,that you are going on and on
273,A,14,16,Sadek,NOTHIONG
278,T,Call Fardous and invite
Each of the lines indicate a day's activitity and speparated by the delemeter , (comma). My program reads this...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.