Search:

Type: Posts; User: warney_out

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,746

    the things is am making a simple email client and...

    the things is am making a simple email client and server program ....i just need a way for the client to access the mail (which will be in the server side )using the client side program...transfering...
  2. Replies
    5
    Views
    1,746

    fopen+network

    how can i open a file across the network....the file is a text file in one computer(server)and i am developing some program to access it from another(client)....i have done all the socket operation...
  3. Replies
    5
    Views
    1,275

    the thing is i have a program(main) that needs to...

    the thing is i have a program(main) that needs to execute 2 programs(child) whose outputs are dependent on each other....
  4. Replies
    5
    Views
    1,275

    how to spawn 2 process simultaneously with fork?

    how to spawn 2 process simultaneously with fork?
  5. Replies
    5
    Views
    1,275

    child spawning

    hi there,
    i need some help with executing a file from within a program....
    how do i spawn two child programs concurrently from the parent program and after spawning the child programs the parent...
  6. Thread: C++ in C

    by warney_out
    Replies
    3
    Views
    1,067

    C++ in C

    hi
    i wonder if anyone can help me with running C++ scripts in C....i mean i have a program that has some function that cannot be done in C so i have to do it in C++....is executing c++ files from C...
  7. Replies
    1
    Views
    1,205

    time of the day

    hi
    can anyone help me with finding the time of day ....i mean morning afternoon
    i am using C with linux
  8. Replies
    1
    Views
    1,477

    moving files

    i have two querries
    1.how can i use C commands(not "mv" command) to cut and paste a file from one folder to another....
    2.and also how can i do cut,copy and paste text in text box
    i am using linux...
  9. Thread: pci driver

    by warney_out
    Replies
    2
    Views
    3,869

    pci driver

    can anyone help me with writing a pci bus scan program.....it needs to scan for pci devices and report on their status
  10. Thread: pci

    by warney_out
    Replies
    1
    Views
    1,164

    pci

    i am using C in linux
    can anyone help me with writing a pci bus scan program.....it needs to scan for pci devices and report on their status
  11. Replies
    5
    Views
    1,098

    what i meant to say was i need some pseudo codes...

    what i meant to say was i need some pseudo codes or algorithm on how can i solve my problem.
    i have to make a scheduler



    scheduler()
    {
    it will contain the list of the taks in the queue and...
  12. Replies
    5
    Views
    1,098

    cirular linked list

    hi everyone,
    i have a complex query
    i want to make a circular linked list where i have to
    1) insert a task into the scheduler list before scheduler begins
    2) this first task will add another...
  13. Replies
    3
    Views
    1,201

    directory listing

    i have the follwing code to list the files in a directory.........but i need the name of the files which doesnt have any extensions
    for e.g.
    if my directory containts the following files:
    a
    gg...
  14. Thread: strtok

    by warney_out
    Replies
    10
    Views
    1,666

    strtok

    hi i have an array which is like the following which will be inputted at by the user in another pc and i wil get it through sockets....

    name:asd
    add:sdf
    married;single
    dob:11/11/12/

    i just...
  15. Replies
    1
    Views
    1,075

    directory size

    how to find the a particular directory size and size of all the files inside the directory........using C programming in linux
  16. Replies
    2
    Views
    1,129

    return

    the reason i edited my code is that my code uses socket programming and i am stuck in the part that my messages are not refreshed each time i send them so i wanted to use function and return...
  17. Replies
    2
    Views
    1,129

    return error

    i have the following codes in C language in linux:
    the problem with me is that when i call readFile function...it checks for some if statement and calls notexist function ......after the notexist...
  18. Thread: file find

    by warney_out
    Replies
    3
    Views
    1,286

    file find

    can we find out whether a file exists or not with out using the fopen command.......i am using the fopen command and when it encounters a file that doesnt exists it gives me segmentation error
    i am...
  19. Replies
    12
    Views
    1,469

    i have read the lines......but how to match it...

    i have read the lines......but how to match it with the first occurence of ":"
  20. Replies
    12
    Views
    1,469

    i am just trying to get the first words of each...

    i am just trying to get the first words of each line of a file(or an array)....and the lines of the files are seperated by ":"
    example
    a:b:d
    ddd:dfd:dfd

    so that i can get "a" from the first...
  21. Replies
    12
    Views
    1,469

    i did

    i mean i did this
    if (buf[cnt][len-1] == '\n')
    buf[cnt][len-1] = '\0';
    buf[cnt][len-1] = ':';
  22. Replies
    12
    Views
    1,469

    finding a colon

    i have the following code to find the first words of a file....but my words are seperated by ":" it tried to put : along with \n an \0 but it still doesnt find the word it just finds the whole line
    ...
  23. Replies
    1
    Views
    815

    socket programming

    i have the following code for receiving a message from udpclient
    what i want to do is store all the incoming message into a single array and then process that array......for now i am only getting...
  24. Replies
    2
    Views
    1,757

    free command

    i have the following variable
    char text1[30]=" ";
    char text2[30]=":";
    then after putting some values in text1 and text2 i do
    strcat(text1,text2);
    then i need to clear text1 and text2 i tried the...
  25. Thread: strcat

    by warney_out
    Replies
    7
    Views
    1,975

    error

    using that code gave me this error
    warning: assignment discards qualifiers from pointer target type
    warning: assignment discards qualifiers from pointer target type
Results 1 to 25 of 36
Page 1 of 2 1 2