Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. zavrisky

    client file descriptor

    I've solved it. So, don't need to reply. Zav
  2. zavrisky

    client file descriptor

    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...
  3. zavrisky

    Hi, How do you initialize a stri

    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...
  4. zavrisky

    how to create an Object array and how to work with it

    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...
  5. zavrisky

    How to re-initialize a Struct variable ?

    I want to reinitialize a structured variable. void menu( char *fname) { int option; int totEntries = 0; DiaryType Diary; ..... case 1: doCreate(&Diary) ; break; ..... } int doCreate(DiaryType *Diary ) { char year[5] ; char fname[ MAX_FNAME ] ; char...
  6. zavrisky

    input output from Binary file !!

    Thanks very much bigtamscot. That was a great help. Cheers and thanks a bunch again :-)
  7. zavrisky

    input output from Binary file !!

    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...

Part and Inventory Search

Back
Top