Search:

Type: Posts; User: angelfly

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    2,798

    CrazyNorman: I want to do anything I can with the...

    CrazyNorman: I want to do anything I can with the ISO but main just create them. As for running other programs thats what I wanted to avoid as I wanted to make my own program.

    Dave_Sinkula: thats...
  2. Replies
    5
    Views
    2,798

    iso9660 creation/reading/writing

    I'm trying to learn how to create, read, and write to iso9660 filesystems. I've searched google for a very long time but all it brings up are cd burning programs. Any know a good resource for it?
  3. Replies
    15
    Views
    6,238

    There is no one distro that is better than...

    There is no one distro that is better than another.It all depends on the person using.I myself perfer Slackware.I use it on my laptop.But I also like Mandrake so I put that on my desktop.I have it...
  4. does that work in non-gui apps?

    does that work in non-gui apps?
  5. how do I make text that stays in place and update

    I've seen programs before such as games which display text e.g score,user,etc.. The text is display on the screen but it can be changed without redisplaying it.For example the score will just...
  6. Replies
    1
    Views
    2,142

    help! program compiles but won't run

    I sucessfully compiled it under linux and windows it works under linux but under windows it gives an error when I run it.




    #include <stdio.h>

    int main(int argc,char* argv[]){

    FILE...
  7. Replies
    4
    Views
    936

    thanks it works now.I used

    thanks it works now.I used <= because I thought if I used < and for example there were 5 arg it would stop at 4
  8. Replies
    4
    Views
    936

    proplem searching runtime arguments

    The program compiles fine but windows keeps giving me errors when I run the program:



    while (t<=argc){
    if (argv[t][0]=='-'){
    printf("Found option");
    }
    t++;
    }
  9. Replies
    7
    Views
    6,408

    you should run it in superuser mode.Either log in...

    you should run it in superuser mode.Either log in as root or use the "su" and enter the root password
  10. Replies
    18
    Views
    4,108

    Sams Teach Yourself C in 24 hours is a great...

    Sams Teach Yourself C in 24 hours is a great book.I got it with my Borland C++ Starter kit.It covers lots of stuff like basic I/O to file I/O it also has alot of example code
  11. Replies
    1
    Views
    665

    need help with my function

    I'm trying to make a function scan a file for a string and replace part of the string.I've got it to scan the file and detect the string but replaceing the part of the string is a problem.I'm trying...
  12. Replies
    9
    Views
    3,394

    I open the file through main and pass the file...

    I open the file through main and pass the file pointer to the function.I've tested it by using Hex Workshop and adding the hex string 0200 0424.I tried it on a text file and an EXE.Here is the full...
  13. Replies
    9
    Views
    3,394

    problem reading files in C

    I'm using the fgetc() function for reading files.Aside from reading files I want it to read files such as EXEs as well.I test it by using a hex editor to insert 0200 0242 and then run the program.The...
  14. Thread: C function

    by angelfly
    Replies
    6
    Views
    1,405

    One error I see is that your function is set to...

    One error I see is that your function is set to recieve the "target" and "source" varible when it's run but within it you redeclare them.You should probably declare them within main and pass them...
  15. Replies
    2
    Views
    1,102

    how to add variables to the system command

    is there any way to do it.Like say I wanted to create a directory with the same name as the vaiable x.I've tried system("mkdir %s",x) but it didn't work.
  16. Replies
    0
    Views
    966

    need help with file manipulation

    I know how to open a file and search for text strings but I want to know how to search for hex strings.For I wanted to search a file for the hex string 0100 8892 0121.Also how would display the...
Results 1 to 16 of 16