Search:

Type: Posts; User: serfurj

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,549

    thanks, that's the kind of answer i was looking...

    thanks, that's the kind of answer i was looking for.
  2. Replies
    6
    Views
    1,549

    it seems like it might be a bit cumbersome. so...

    it seems like it might be a bit cumbersome.

    so how common is it? (i haven't examined too much C code, being a noob) do you use it?
  3. Replies
    6
    Views
    1,549

    wow, that's a lot. maybe i should give it a try....

    wow, that's a lot. maybe i should give it a try.

    seriously, is it worth trying?
  4. Replies
    14
    Views
    1,697

    retard, this is an excellent explaination on...

    retard,

    this is an excellent explaination on pointers: http://www.eskimo.com/~scs/cclass/notes/sx10.html
  5. Replies
    6
    Views
    1,549

    C for OO programming?

    how many people actually use C for OO programming? it's described here: http://www.planetpdf.com/codecuts/pdfs/ooc.pdf
  6. ah, i see. that's supposed to be an example of...

    ah, i see. that's supposed to be an example of how to embed R into your C program, so i figured it was self-contained.

    thanks for the help!
  7. $ make all make: *** No rule to make target...

    $ make all
    make: *** No rule to make target `all'. Stop.




    your first question (and CornedBee's question) were both answered in my initial post. i was being polite by not bringing this to...
  8. $ autoconf autoconf-2.59: no input file the...

    $ autoconf
    autoconf-2.59: no input file

    the autoconf man page says it expects a configure.ac or configure.in file, neither of which exist.


    $ make
    make: *** No targets specified and no...
  9. here's what happens: $ make -f Makefile.in...

    here's what happens:


    $ make -f Makefile.in
    Makefile.in:11: ../../Makeconf: No such file or directory
    make: *** No rule to make target `../../Makeconf'. Stop.

    so i copied ../../Makeconf.in...
  10. compiling a program that has no configure script

    i'm trying to compile a program that has no configure script, only a makefile. i've tried several things:


    $ cd R-1.9.0/tests/Embedding/
    $ ./configure
    -/bin/bash: ./configure: No such file or...
  11. thanks for the link.

    thanks for the link.
  12. Replies
    385
    Views
    725,001

    Sticky: suggestion for these forums: more text browser friendly

    elinks is my main browser. this is what i usually see to the left of posts:

    sean_mackrory
    Code Spice

    sean_mackrory's Avatar
    ...
  13. Replies
    3
    Views
    3,386

    thanks for the input. i think i'll go with...

    thanks for the input. i think i'll go with mysql's api since it looks like a lot less hassle and i don't think it's a big deal to have mysql as a dependency.

    also, does anyone have experience...
  14. Replies
    3
    Views
    3,386

    MySQL C API or ODBC? / embedded MySQL?

    i'm about to start on a program that uses a database. which do you think is better to use, the mysql c api: http://dev.mysql.com/doc/mysql/en/index.html
    or odbc:
    http://www.unixodbc.org/?
  15. sake, yes, i would rather learn C than python...

    sake,

    yes, i would rather learn C than python with C syntax. so what do you do when you have the need for those types of objects? do you know of any books or online docs that discuss high-level...
  16. thanks for the replies. that was just the type...

    thanks for the replies. that was just the type of info i was looking for andyhunter.
  17. is there an equivalent to python data types in C?

    i'm used to working with python data types, such as lists, tuples, dictionaries, pickles, and so on. will these concepts transfer over to C? if so, please point me to a tutorial or some...
  18. Replies
    5
    Views
    3,154

    finding unanswered posts

    how do you find unanswered posts on this forum?
  19. Replies
    15
    Views
    1,966

    spaces. advanced text editor. it's the same.

    spaces. advanced text editor. it's the same.
  20. Replies
    1
    Views
    1,167

    bug in this site's vBulletin software?

    what do you think, is this a bug?
    http://cboard.cprogramming.com/showthread.php?t=59632
  21. Replies
    15
    Views
    1,966

    seems like a bug in the forum software. this...

    seems like a bug in the forum software. this works:

    float overtime_week_day=14, overtime_weekend=5, total_over_time;
    but this doesn't:

    float...
  22. Replies
    15
    Views
    1,966

    i copied from the board, pasted it in emacs,...

    i copied from the board, pasted it in emacs, corrected the spacing errors, ... copied it from emacs, pasted it to the board, and the spacing errors are back after it is submitted. try it.
  23. Replies
    15
    Views
    1,966

    i now see that the code i posted also has spaces...

    i now see that the code i posted also has spaces in those two variables. i wonder if something's wrong with the forum.
  24. Replies
    15
    Views
    1,966

    this might help: #include int...

    this might help:

    #include <stdio.h>

    int main()
    {
    float overtime_week_day=14,overtime_weekend=5,total_overtime;
    float overtime_weekendpay,overtime_week_daypay,standard_pay, normal_pay;
    float...
  25. Replies
    15
    Views
    1,966

    for one, your variables "total_over time" and...

    for one, your variables "total_over time" and "standard_ pay" have spaces in them. what is the correct value for "tax deduction"?
Results 1 to 25 of 26
Page 1 of 2 1 2