Search:

Type: Posts; User: jamesedmonds

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    3,157

    You should look around on youtube, It was done by...

    You should look around on youtube, It was done by a professor at an austrailian college. I think it was divided up over 2 one hour videos. Goodluck with your search.

    char [9];
  2. Replies
    17
    Views
    2,325

    Whatever happened to learning the basics first?

    Whatever happened to learning the basics first?
  3. Replies
    6
    Views
    2,912

    Since it doesn't seem to matter, and it won't...

    Since it doesn't seem to matter, and it won't affect your grade according to you, goodbye.
  4. Replies
    5
    Views
    1,049

    Sorry I'm a bit of a newb, but i dont see how you...

    Sorry I'm a bit of a newb, but i dont see how you even compiled the program to crash without declaring a few parameters in your function.
  5. Replies
    15
    Views
    1,972

    8284119110 becomes -2-8-4-5-1-8-50-3 ok that...

    8284119110 becomes
    -2-8-4-5-1-8-50-3
    ok that number is really
    -305815482 so we take

    -2147483648 and minus from it
    -305815482
    1841668166(this num is now positive cause...
  6. Replies
    15
    Views
    1,972

    click private messaging then on the left click...

    click private messaging
    then on the left click general settings
    then to the right scroll down and choose option private messages on
    then on down check to make sure with the other options that I...
  7. I dont think a function call is faster than bit...

    I dont think a function call is faster than bit manipulation done on the fly. I dont think anything is faster than shifting bits with bitwise operators. Someone else who has more exp on it maybe...
  8. printf("\t"); printf("%d",AVAIL[process]); ...

    printf("\t");
    printf("%d",AVAIL[process]);

    try it like that to see if it works.
  9. Replies
    7
    Views
    1,319

    if(dog == cats) { //code here } A few...

    if(dog == cats)
    {
    //code here
    }

    A few more comparison operators exist. GL.
  10. Replies
    4
    Views
    1,085

    I can't stop laughing, reminds me of me... Not...

    I can't stop laughing, reminds me of me... Not you but the other person I was in so deep once I couldn't see a way out I looked at goto and thought for a second it was the only way. As I looked left...
  11. It's ok, I didn't do his work, just tried to...

    It's ok, I didn't do his work, just tried to explain it the best I could. I have no intention of coding anything for this person, only trying an attempt at helping him understand the assignment a...
  12. [0][0][0][0] [0][0][0][0] thats your memory...

    [0][0][0][0] [0][0][0][0] thats your memory right now it equal 0.
    [0][0][0][0] [0][0][0][1] now it equal to 1
    [0][0][0][0] [0][0][1][0] now thats a 2
    [0][0][0][0] [0][1][0][0] this is a 4...
  13. Replies
    8
    Views
    3,242

    Not the answer they are looking for by the...

    Not the answer they are looking for by the example given but by the question of how many letters are used, I'd have to say 18. :)
  14. Replies
    15
    Views
    1,972

    I was going to show you in a pm how but you have...

    I was going to show you in a pm how but you have pm's blocked. Im not going to post it. Ill save it to a file and repost it in a pm again at a later time, I don't wanna put your number on here.(BTW...
  15. Replies
    15
    Views
    1,972

    lol i deleted that faulty prog and wrote it down...

    lol i deleted that faulty prog and wrote it down on paper texted a new number *** *** ****, but yes i will show you the math to get your number back out of it. Its all simple addition(and once...
  16. Replies
    15
    Views
    1,972

    276 areacode?

    276 areacode?
  17. Replies
    15
    Views
    1,972

    If those numbers was your phone number before the...

    If those numbers was your phone number before the program ran I think I know your number now. Want me to call and test it.
  18. LOL you did mean you read the title right? The...

    LOL you did mean you read the title right? The book is about twice as big as the bible and you didn't find the answer to that in there? I do own the book and the answer is in there. The next time you...
  19. read the equation in as a string and have your...

    read the equation in as a string and have your program solve it in steps starting with the ')' that has priority
  20. Replies
    14
    Views
    1,745

    I took a class at a sc upstate tech school as...

    I took a class at a sc upstate tech school as well with c as a choice, I wouldn't say I failed but I didn't complete it. I helped a few kids in there out as well with basic stuff. Its funny they cram...
  21. Thread: pointers

    by jamesedmonds
    Replies
    21
    Views
    2,271

    files and sockets come to mind also.

    files and sockets come to mind also.
  22. Thread: Dev C++

    by jamesedmonds
    Replies
    9
    Views
    1,840

    // // include int main(void) { ...

    //
    //
    include<stdio.h>
    int main(void)
    {



    getchar()
    return 0;
  23. Thread: Dev C++

    by jamesedmonds
    Replies
    9
    Views
    1,840

    no he has main as Main in both no int in front...

    no he has main as Main in both
    no int in front of the first file.

    before the last }
    you may want to put getchar();
    and put a return();
    if you actually want to see your...
  24. Replies
    9
    Views
    12,045

    #include int main(void) { int x;...

    #include<stdio.h>

    int main(void)
    {
    int x;
    char cArray[5];
    char cName[] = "Olivia";

    printf("Character array not initialized:\n");
Results 1 to 24 of 27
Page 1 of 2 1 2