Search:

Type: Posts; User: 0x47617279

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    970

    I'm helping by adding comments, so please read...

    I'm helping by adding comments, so please read through your code below. I don't think their is a way to exit the program with CTRL + D, but anyone can close a program with CTRL + C





    1
    2
    3...
  2. Thread: C Program

    by 0x47617279
    Replies
    14
    Views
    1,887

    Haha, right I honest to god do peoples homework...

    Haha, right I honest to god do peoples homework just because I believe they've tried.. but omg haha, go away
  3. Replies
    9
    Views
    3,233

    #include #include #define N...

    #include<stdio.h>
    #include<math.h>

    #define N 250


    int main()
    {
    float...
  4. Replies
    8
    Views
    1,221

    printf("$/t%f", varible);

    printf("$/t%f", varible);
  5. Replies
    3
    Views
    2,164

    If you use an & symbol, you'll pass the address...

    If you use an & symbol, you'll pass the address of table in memory.



    #include <stdio.h>

    void display_table(int*, int);

    #define MAX_PEOPLE 100
  6. Replies
    2
    Views
    1,821

    Sorry about the lack of information. He likes...

    Sorry about the lack of information. He likes electronics, he also likes to teach me, so does it include the pdf or what ever to learn. Sorry about this message, I'm messaging while his in the toilet...
  7. Replies
    2
    Views
    1,821

    C raspberry pi

    How easy is it to translate coding for linux to Raspberry PI coding... I ask, because I'm about to buy 2x Raspberry PI's. Its my dads bday soon, and he likes being competitive... alright, I want one...
  8. Replies
    9
    Views
    1,100

    Change float threenumbers(floatnum1,...

    Change


    float threenumbers(floatnum1, floatnum2, floatnum3){
    num1=num1+num2+num3;
    num2=num1+num2+num3)/3;
    num3=num1*num2*num3;
    }
  9. Replies
    4
    Views
    2,283

    Arabic Programming Language

    I don't under Arabic, but I found this article which some of you might enjoy reading.
    The article isn't in Arabic.

    Meet قلب, the programming language that uses Arabic script • The Register
  10. Replies
    5
    Views
    1,372

    The first "struct integer" is telling the...

    The first "struct integer" is telling the program, that it should expect to get a return in the form of a "struct integer*". Its a function, his not declaring the structure.
  11. I can't see anything. Could you not upload the...

    I can't see anything. Could you not upload the full source to something like sourceforge
  12. I currently use this... but my flowcharts don't...

    I currently use this... but my flowcharts don't usually end up that complicated.

    Flowchart software | Diagram software | Flowchart diagram
  13. Their are the same amount of closing brackets...

    Their are the same amount of closing brackets with opening brackets.

    You should put fflush stdin before getchar();




    fflush(stdin);
    getchar();
  14. Replies
    7
    Views
    1,119

    You can't create an array of varibles with a...

    You can't create an array of varibles with a number which could change, it has to be a static number. You could create a int pointer and then malloc the amount of memory you required.




    ...
  15. Legality of External Program Function Calls

    I've been reading through keeperfx code. Its a community patch for Dungeon Keeper 1.

    The person stated that instead of creating dungeon keeper from scratch his using the original EXE as a sort of...
  16. Replies
    4
    Views
    960

    Thank you for your reply. You just answered my...

    Thank you for your reply. You just answered my next question about extern with functions as well :)
  17. Replies
    4
    Views
    960

    Static Function Understanding

    I think I have the understanding correct, but just encase could someone confirm this for me.

    In C, a static function is used to state that only the app/dll which contains the code for the function...
  18. Replies
    7
    Views
    1,131

    Thanks for the quick reply. I'm just looking for...

    Thanks for the quick reply. I'm just looking for people's views on the subject.

    At the moment I'm using structures with multi-dimensional pointer arrays, mainly because I'm more comfortable with...
  19. Replies
    7
    Views
    1,131

    OpenGL Objects

    This is quite a trivial question (I'm just curious), so thank you if you answer.I was just wondering what would be best for handling objects with multiple faces.

    A structure containing a linked...
Results 1 to 19 of 19