Search:

Type: Posts; User: Iron Hide

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. lol what?

    lol what?
  2. he is still a freak

    he is still a freak
  3. Alright, I think you guys are right. I am...

    Alright, I think you guys are right. I am relying more on internet than thinking myself. This programming class was a prerequisite for my degree so that's why I wasn't really working hard on it.
    ...
  4. wow seriously, all I need is a start. I am not...

    wow seriously, all I need is a start. I am not asking to do all for me, I am new and you can't expect everything from me. All you guys did was point out errors in that code but I need to know what...
  5. #include typedef struct { int...

    #include <stdio.h>

    typedef struct {
    int studentID;
    int exam1;
    int exam2;
    int exam3;
    int totalExam;
    char grade;
    }STUDENT;
  6. #include typedef struct { int...

    #include <stdio.h>

    typedef struct {
    int studentID;
    int exam1;
    int exam2;
    int exam3;
    int totalExam;
    char grade;
    }STUDENT;
  7. Can you guys please help me with this, its due...

    Can you guys please help me with this, its due today and recently I was working on other project. I will appreciate if you guys can help me lil more, I won't wait for the last minuter ever in my...
  8. #include typedef struct { int...

    #include <stdio.h>

    typedef struct {
    int studentID;
    int exam1;
    int exam2;
    int exam3;
    int totalExam;
    char grade;
    }STUDENT;
  9. Need help with the program which keeps records and perform statistical analysis?

    Can someone please help me with this program?



    Here is what I have done so far, and I don't know what to do next.

    #include <stdio.h>

    typedef struct {
    int studentID;
  10. works! I tried pacing it various paces but this...

    works! I tried pacing it various paces but this one :)Thanks
  11. Where do I need to enter endl? I did it here:...

    Where do I need to enter endl?

    I did it here:

    if(i % numPerLine == 0){
    cout << endl;

    Thanks
  12. Thats not a same code, that a totally different...

    Thats not a same code, that a totally different problem.
  13. Using do while to print # of words per line...

    Hi, I can make do while loop to work here. It is suppost to print user defined(numPerLine) words per line but for some reason it prints all in one line. I know something is wrong with my do while. ...
  14. Replies
    3
    Views
    1,570

    sorry, my bad, I had been working on C but this...

    sorry, my bad, I had been working on C but this project was on C++. Didn't realize that I submitted it in C section.

    Can I move it?
  15. Thanks all, I figured that one out, but I also...

    Thanks all, I figured that one out, but I also need a little in in do while loop ;)
    http://cboard.cprogramming.com/c-programming/137901-what-i-am-doing-wrong-here.html#post1026186

    Thanks
  16. Replies
    3
    Views
    1,570

    What I am doing wrong here?

    Here is my code:


    #include <iostream>
    #include <iomanip>

    using namespace std;

    //function prototypes
  17. ok rags you got any problem with that. I can...

    ok rags you got any problem with that. I can post it where ever I want for fast response. If you can't answer than please don't pull your leg in my thread.

    Thanks
  18. Does anyone still doesn't understand what this...

    Does anyone still doesn't understand what this question is asking for?
  19. Will I use iteration (for loop) for non-recursive...

    Will I use iteration (for loop) for non-recursive function?

    I can't use same code again. I will do ame thing using recursion and other will us iteration(for loop).
  20. I know that was just the for example. But the...

    I know that was just the for example. But the problem is that question says to make 2 different functions which will do the same thing but one will do using recursion and other non-recursion. Thats...
  21. All needs to be done is to use functions and do...

    All needs to be done is to use functions and do the same thing with both but 1 will work using recursion and other without recursion. It will be something like this:


    #include <stdio.h>...
  22. How do I modify my code to add recursive and non-rescursive function..

    Hello everyone,

    I had been working on this project recent days and finally got it work. The problem is I couldn't do it the way question asked me so, I did it my way. The problem is regarding...
  23. Replies
    1
    Views
    942

    I need helo sorting 2 dimention arrays

    Hi,
    I was working on sorting 2 dimension arrays in ascending order and need a little help.
    Here is my code:




    #include <stdio.h>

    void bubbleSort(int [][]);
  24. how? ;) you mean Digits - Alpha = Special...

    how? ;)

    you mean Digits - Alpha = Special char.

    Thats clever why did I thought of this.
  25. nvm, I just figured that out. But how can I do...

    nvm, I just figured that out. But how can I do the same thing to count # of special char? This part is lil confusing.



    #include <stdio.h>

    #define ALPHA 26
    #define DIGIT 10

    int main ()
Results 1 to 25 of 57
Page 1 of 3 1 2 3