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 bkrike 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: *

  • Users: Maulkin
  • Content: Threads
  • Order by date
  1. Maulkin

    how do i write a --help page?

    i have written a perl application and need to create a help page for it so the command >myperl --help will display this page anyone know how
  2. Maulkin

    help returning double

    I wrote this function it should return a double but the compiler returns this error: line 38: incorrect function return type this is my code line 38 is the second line double expon(int n, int m, int o, int p) { int i; double temp; temp = 1; for (i = 1; i < (m + 1); i++) {...
  3. Maulkin

    can you change the number of bits in int type

    i'm writing a c implementation of RSA that needs to deal with large int values can i extend the number of bits assigned for int type to handle these large numbers?
  4. Maulkin

    how do you send messages from one APP to another?

    I need help sending messages e.g. a string from one application to another application.
  5. Maulkin

    used this code to make pipe need help

    this code is surrposed to create a pipe place two messages on it then read them off. [code] #include <unistd.h> #include <stdio.h> #define msgSize 8 char *lock = &quot;1&quot;; char *unlock = &quot;2&quot;; main(){ char inbuf[msgSize]; int p[2], j; /* open the pipe */ if (pipe(p) ==...
  6. Maulkin

    JScrollPane visability

    I have used this line of code but am unable to set the scrollPane to always visible. Can anyone help? this.getContentPane().add(new JScrollPane(TA)); where TA is the name of the JTextArea.
  7. Maulkin

    using malloc to create array of pointers

    Is theis the correct code to create an array of pointers using malloc b = malloc(256 * sizeof(char*)); if so how do I set the memory address pointed to by each pointer. e.g b[i] = &extract[i];
  8. Maulkin

    how do you create a 2d runtime array

    trying to create a two dimensional array of strings using malloc. I use this line to try and create a 2d array of strings char a[256]; char b* b = malloc(10 * sizeof(a)); this should create an array of ten rows where each row contains a string of up to 256 characters. if this is correct do...
  9. Maulkin

    written this code but having trouble

    I wrote this code it is surposed to take an input string like a&quot;bcd&quot;e&quot;fgh&quot;i and extract the strings that occur inside the &quot; &quot; and tsore them in an array once the whole input string has been examined the function dumpstring should print out all the extracted...
  10. Maulkin

    To LiquidBinary or any interested soul

    thanks for the help this will not work in my problem my string array ispopulated by a loop and looks like this if input strings are &quot;one&quot; &quot;two&quot; &quot;three&quot; on the first pass the array will contain oneNUll on the second oneNULLtwoNULL on the third...
  11. Maulkin

    how to create an array of pointers

    How would I create an array of pointers, where each pointer in the array points to a character string in another array? any help would be vastly appreciated
  12. Maulkin

    creating an array of strings?

    Hi, I am trying to create an array of strings (e.g each element of the array contains a complete string), but am unable to do so the strings to be stored come from a standard array of characters called extract. extract is populated by a loop which takes characters between quotes. after this I...

Part and Inventory Search

Back
Top