Search:

Type: Posts; User: nesir

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    18
    Views
    2,746

    hay.... Thanks for the advice..

    hay.... Thanks for the advice..
  2. Replies
    18
    Views
    2,746

    @spydoor Oh... Okay... I'll try...

    @spydoor
    Oh... Okay... I'll try that. But wait a minute, you mean I have to start over???
  3. Thread: Hi

    by nesir
    Replies
    7
    Views
    3,033

    hello!

    hello!
  4. Replies
    18
    Views
    2,746

    Why? What's wrong with goto? For me, goto is...

    Why? What's wrong with goto? For me, goto is simplier than making loops... :) Eh... How can I make a loop from that? And my original problem is about saving files, what's that got to do with solving...
  5. Replies
    18
    Views
    2,746

    Wow... I wonder why the topic suddenly changed......

    Wow... I wonder why the topic suddenly changed...

    Well, back to the topic... Okay, now I understand a little of my program but now I have another DIFFERENT FILE problem..

    My program isn't...
  6. Replies
    18
    Views
    2,746

    let me rephrase my question... I...

    let me rephrase my question...

    I understand only a LITTLE of how FILES work. I know that if you want to open a file, you use fopen() and if you close, fclose(); r is for read, r+ is for...
  7. Replies
    18
    Views
    2,746

    Having a hard time understanding FILES!

    Help!! I don't understand FILES at all and the scientific terms used by FAQ only confuses me more!!!

    I do know how to use FILES though, what I don't understand is how to save the user's input and...
  8. Replies
    10
    Views
    1,087

    Now I get it!!! Thanks a LOT!!!! If you put it...

    Now I get it!!! Thanks a LOT!!!! If you put it that way, it's actually very simple. (Why didn't I thought about that?) Thanks! You don't know how much you've helped me.





    So I can't actually...
  9. Replies
    10
    Views
    1,087

    Oh! I also have one question: How can I output...

    Oh! I also have one question:

    How can I output the qoutient together with its remainder?

    We know that if we place 9/2 the answer is 4 and if we place 9%2 the answer is 1.

    How can I get 4.5...
  10. Replies
    10
    Views
    1,087

    Huh? Sorry, but I'm completely at a lost......

    Huh? Sorry, but I'm completely at a lost... Please elaborate a little.. BTW, thanks for coping with me... :)
  11. Replies
    10
    Views
    1,087

    Now i finally understand! Thanks but one thing...

    Now i finally understand!

    Thanks but one thing is still bothering me though...

    When will I call my function? I mean, where in the code that I made will I place that function? Is it inside the...
  12. Replies
    10
    Views
    1,087

    Yah... I know how to make a function.. but I'm...

    Yah... I know how to make a function.. but I'm not quite good. I get confused sometimes.


    So for example, I will make a function that will display a message... Tell me if I'm wrong or if I did...
  13. Replies
    10
    Views
    1,087

    Help me with this please!!!

    I have this code that will compute a student's average QPI (Qoutient Percentile Intelligence). You see, the code is too messy. Can anyone help me to make it clean? I mean, help me to make a function...
  14. Replies
    2
    Views
    1,484

    Never Mind!! I Already Figured Out My Problem......

    Never Mind!! I Already Figured Out My Problem... Please Don't Reply To This Thread Anymore...
  15. Replies
    2
    Views
    1,484

    Completing this program

    #include <stdio.h>
    #include <conio.h>
    void swap(int *, int *);
    void bubble(int [], int);
    main(){
    int a[] = {7, 3, 66, 3, -5, 22, -77, 2};

    printf("I will arrange these...
  16. Replies
    21
    Views
    2,047

    that's right.. i get an answer for each one even...

    that's right.. i get an answer for each one even though i only want ONE answer.
  17. Replies
    21
    Views
    2,047

    i still don't get it you know...

    i still don't get it you know...
  18. Replies
    21
    Views
    2,047

    how can i scan characters?

    how can i scan characters?
  19. Replies
    21
    Views
    2,047

    the brackets don't work... i want it to output...

    the brackets don't work...
    i want it to output only one sentence and even though there is no 0, it outputs "Yes, there is a 0"
  20. Replies
    21
    Views
    2,047

    what's wrong with these?

    i try to make a program that will tell the user if there is a 0 in his input but why won't it run the way i want it to?

    #include <stdio.h>
    #include <conio.h>
    int main(){
    int num[10];
    ...
  21. Replies
    23
    Views
    3,067

    hey... what does getch() means, by the way? A...

    hey... what does getch() means, by the way? A friend of mine just told me to use #include <conio.h> and getch() when using DevC++ but he didn't tell me the exact function of it... I'm not used to use...
  22. Replies
    23
    Views
    3,067

    Finally! I got it! But it looks rather long... Is...

    Finally! I got it! But it looks rather long... Is there no shortcuts in this??


    #include <stdio.h>
    #include <conio.h>
    int main(void){
    int v=0;
    printf("Number please: ");
    ...
  23. Replies
    23
    Views
    3,067

    #include #include int...

    #include <stdio.h>
    #include <conio.h>
    int main(void){
    int v=0;
    printf("Number please: ");
    scanf("%d",&v);
    if((v%10)<=4){
    printf("Tens is %d", (v/10)*10);
    ...
  24. Replies
    23
    Views
    3,067

    actually, no... if it would be rounded to the...

    actually, no... if it would be rounded to the hundred place, it would turn 538 would turn to 500... i can't seem to find in the math.h library the function for rounding off if there is any!
  25. Replies
    23
    Views
    3,067

    okay, here's the REAL DEAL. My instructor...

    okay, here's the REAL DEAL. My instructor obviosly created a serious mistake... if I was to input a number, say 538, the output of its tens value must be 40... but now i can't seem to make it happen!...
Results 1 to 25 of 38
Page 1 of 2 1 2