Search:

Type: Posts; User: yrostran

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    1,916

    Thank you :) lol fixing those 2 errors gave me a...

    Thank you :) lol fixing those 2 errors gave me a whopping 9 now lol i suck
  2. Replies
    4
    Views
    1,916

    Thats the thing i dont know what the problem is,i...

    Thats the thing i dont know what the problem is,i keep getting these 5 errors and i have no clue why,i mean i dont see the problem,It is a recursive program as i stated in the beginning.

    Errors im...
  3. Replies
    4
    Views
    1,916

    Problem with my code :( please help

    So i'm trying to make a recursive program for a class im taking,but so far i can't seem to get it to run :( i've tried for 2 days now and just can't seem to get around the error's i'm getting. If you...
  4. Replies
    11
    Views
    1,472

    This is the 1st one,i think at least,take a look:...

    This is the 1st one,i think at least,take a look:



    #include "stdio.h"
    #include "conio.h"

    void main()
    {
    static int a[10] [10];
  5. Replies
    11
    Views
    1,472

    Ok ill try it :)

    Ok ill try it :)
  6. Replies
    11
    Views
    1,472

    I'm trying belive me :( i was doing good till...

    I'm trying belive me :( i was doing good till these hit me,probably because i don't really remember matrixes much.
  7. Replies
    11
    Views
    1,472

    I got home from class an hour ago i got work in 3...

    I got home from class an hour ago i got work in 3 hour's,i don't leave anything till the last minute but my schedule in the day is really hectic sadly :( can't even quit my job and only study it sux.
  8. Replies
    11
    Views
    1,472

    Nay tried that, how can you do a program without...

    Nay tried that, how can you do a program without know what it's supposed to do? Sure you can do all the for's,else's,etc but in the end what are you going to print out if you have no idea what you're...
  9. Replies
    11
    Views
    1,472

    Although i do appreciate the advice this is due...

    Although i do appreciate the advice this is due tomorrow,and i really need to have this done before i need to go to work :( so i do appreciate the guide's but learning by example is much easier, what...
  10. Replies
    11
    Views
    1,472

    Kind of logic problem,could use some help :)

    Ok so my professor left us 5 programs we need to do. Sadly he only gave us these sort of header's wich we need to somehow figure out what the program is supposed to do and do it >.< problem is im...
  11. no actually it asks and askes because in void...

    no actually it asks and askes because in void leer() i have a series of questions the user inputs in this case me,that askes how many clients(in other words how many receipts),then askes name of the...
  12. Noob with a question,any help would be greatly appreciated :)

    #include <stdio.h>
    #include <conio.h>
    static void forcefloat(float*p)
    {
    float f=*p;
    forcefloat(&f);
    }
    struct client
    {
    char client[30];
  13. Replies
    11
    Views
    2,415

    What i found when i searched the error msg in...

    What i found when i searched the error msg in google was


    static void forcefloat(float *p)
    {
    float f = *p;
    forcefloat(&f);
    }

    That fixed it :\ have no idea what that line of code does but...
  14. Replies
    11
    Views
    2,415

    Well elimination all the clear screens helped...

    Well elimination all the clear screens helped with something,the error on screen when run is "Floating point formats not linked" "Abnormal program termination" So there we go :\ what problem i have...
  15. Replies
    11
    Views
    2,415

    hhmm it doesnt exit when you get to: ...

    hhmm it doesnt exit when you get to:

    printf("\nIngrese la cantidad que se compro de dicho producto:");
    scanf("%d",&dato3[j].cp);

    Odd ive ran it on 2 diffrent machines and it exits as soon as i...
  16. Replies
    11
    Views
    2,415

    No problem :) been trying to figure out what the...

    No problem :) been trying to figure out what the problem is but cant seem to see any problems whatsoever.
    I tried the following,instead of making pp a float a made it an integer and the program...
  17. Replies
    11
    Views
    2,415

    Still exits the program after that line

    Still exits the program after that line
  18. Replies
    11
    Views
    2,415

    Help with a Struct problem :)

    #include <stdio.h>
    #include <conio.h>
    struct cliente
    {
    char cliente[30];
    };
    struct cliente dato[30];
    struct vendedor
    {
    char ne[30];
Results 1 to 18 of 18