Search:

Type: Posts; User: wasi.cjr

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    4,386

    Pthread Mutex lock help

    I have multiple threads accessing shared data. I want to put a lock on that code so that the clients access it one at a time. How should i do this?
  2. Replies
    3
    Views
    1,459

    Information regarding Threads

    I have a server that can handle only ONE client. The client gets authenticated, then the client can store information and perform a bunch of other stuff

    Now, I have to make my server compatible to...
  3. Replies
    5
    Views
    3,783

    lol true but the string has unknown number of...

    lol true but the string has unknown number of columns and i have to get rid of the space before and after the columns (only if the space exists)
  4. Replies
    5
    Views
    3,783

    but i have no idea where the coma occurs.. so how...

    but i have no idea where the coma occurs.. so how would i do it?
  5. Replies
    5
    Views
    3,783

    Get rid of spaces

    if i have a string of unkown length.
    like: ".....name Bloor Danforth , stops 32, kilometers 26.3...."
    I have to get rid of spaces before and after the coma ' , '.
    The contents of the...
  6. Replies
    8
    Views
    11,205

    Thanks a lot!

    Thanks a lot!
  7. Replies
    8
    Views
    11,205

    isnt char *d[100]; a 2-D array?.. i thought this...

    isnt char *d[100]; a 2-D array?.. i thought this is a 2d array and i had to convert a 1D array to 2D array where ':' is the token
  8. Replies
    8
    Views
    11,205

    k this is the first time im using this..so take...

    k this is the first time im using this..so take it easy..
    The input is abcd:efgh:ijkl

    expected output:
    abcd
    efgh
    ijkl

    output produced:
    ijkl
  9. Replies
    8
    Views
    11,205

    converting char 1d array to 2d array

    In the loop, the elements in the 2d array, d has the right strings. but once it exits the loop, all the elements in d are the last string.. how should i resolve this?



    #include<stdio.h>...
Results 1 to 9 of 9