Search:

Type: Posts; User: Linux Trojan

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. cuantos tremor est futurus, confutatis maladicis

    cuantos tremor est futurus, confutatis maladicis
  2. Where is Laserlight when I need her? ===> ...

    Where is Laserlight when I need her? ===> SLEEPING !!!!!
  3. It sounds like he wants to do a lot of...

    It sounds like he wants to do a lot of independent activities. My understanding is that object oriented is more appropriate because you can run different parts of the program independently without...
  4. I dont mean to sound trite, but arent buttons...

    I dont mean to sound trite, but arent buttons something for object oriented programming C++ and not top/down programming?
  5. Replies
    13
    Views
    1,232

    Several years ago I wrote my own faxing routine. ...

    Several years ago I wrote my own faxing routine. I used GTK libraries and wrote everything in C. I couldnt get the program done without strtok and yet my book didint talk about it so I was...
  6. Replies
    13
    Views
    1,232

    Tater, thats the book I am using. I am...

    Tater, thats the book I am using. I am disappointed with it. It doesnt even mention STRTOK. Can you believe it?
  7. Replies
    13
    Views
    1,232

    I am not sure exactly what you are saying but my...

    I am not sure exactly what you are saying but my understanding is that everything in C is pretty much a function (I like to call them subroutines) and every function must return a value, even if its...
  8. Replies
    35
    Views
    13,193

    I dont mean to get off topic but, does Pelles...

    I dont mean to get off topic but, does Pelles have its own special functions that are not in standard C? or does it follow standard C and simply provide a useful programing environment? I know that...
  9. Replies
    7
    Views
    2,537

    Wow. I was gonna learn Perl but I put it aside...

    Wow. I was gonna learn Perl but I put it aside coz I thought nothing can beat C for parsing. Is Perl really better in this regard?
  10. Replies
    19
    Views
    1,947

    Tater: Thats alot of code to analyze, and I...

    Tater: Thats alot of code to analyze, and I will in time. But for now, I just thought that for a newbie, it would be easier to break the info into tokens and then just use STRCAT to sew it all...
  11. Replies
    10
    Views
    1,443

    Tater: this is very helpful info, ty.

    Tater: this is very helpful info, ty.
  12. Replies
    19
    Views
    1,947

    Perhaps, it didnt come out right. I was trying...

    Perhaps, it didnt come out right. I was trying to say, "the easiest way" is how he is doing it, without having to create binaries and arrays of structures, etc. I was just trying to start some...
  13. Replies
    10
    Views
    1,443

    I am kinda new to this too; but, in the first...

    I am kinda new to this too; but, in the first case, the pointer only points to the first letter in that array. The memory for the entire array is seen by the pointer, it knows its there, but it just...
  14. Replies
    19
    Views
    1,947

    The way you are presently doing it, breaking the...

    The way you are presently doing it, breaking the lines into tokens, is the only way to do it. I think thats what C is all about, that you can analyze things down to the subatomic level. I dont...
  15. Replies
    16
    Views
    2,338

    I think it would help if we know what you are...

    I think it would help if we know what you are searching for?
  16. Replies
    38
    Views
    4,102

    I know that among the "hackers", mostly the self...

    I know that among the "hackers", mostly the self taught guys, Python is extremely popular. Yet, I dont think any university teaches it. The academics seem to like Fortran, C, Java, C++, stuff like...
  17. Replies
    38
    Views
    4,102

    My background is in engineering so I love...

    My background is in engineering so I love fortran, when it comes to equations and numbers, fortran is perfectly suited. But, when I try to create user interfaces, and I have to use words and...
  18. Replies
    21
    Views
    3,729

    I have to say this thread has really been...

    I have to say this thread has really been helpful. The only editor I ever used was the "vi" editor in unix/linux. Only recently did I switch to Kate, and I thought I was really moving up. I have...
  19. Replies
    21
    Views
    3,729

    I am on linux so I use KATE, its like notepad;...

    I am on linux so I use KATE, its like notepad; but you can turn on line numbers and see where the compiler tells you the errors are. It also has the ability to turn on a command line console at the...
  20. Replies
    2
    Views
    1,036

    Yea, I heard about that on the Alex Jones show. ...

    Yea, I heard about that on the Alex Jones show. I would say more but I know that Big Brother is ALL OVER these message boards - all social media for that matter. "Eu nao falo"
  21. If you are in an engineering program at OSU, I...

    If you are in an engineering program at OSU, I feel pretty strongly that they have your entire 4 years planned out for you in a rigid schedule. Whatever programming languages you need to complete...
  22. wow, I didnt see that coming, horrible.

    wow, I didnt see that coming, horrible.
  23. Pointing fopen to a specific directory in linux

    I have the following code that works


    myFile = fopen("/home/user/rtfdata.rtf", "r"); //open file for reading
    if(myFile){
    for(i = 1; i < MAXLINE; i++){
    fgets(myFileArray[i],MAXBUF,myFile);...
  24. It worked :)

    It worked :)
  25. Compiler tells me I am using escape sequences when I use Fputs

    I am trying to print this to a file using fputs


    fputs("{\rtf1\ansi\deff0 {\fonttbl {\f0 Courier;}}", myFile);


    I think it has a problem with "\d". Is there a way for it to just print...
Results 1 to 25 of 35
Page 1 of 2 1 2