Search:

Type: Posts; User: joeymaharaj

Search: Search took 0.00 seconds.

  1. Replies
    17
    Views
    2,100

    i'm trying not to use linked lists...i don't...

    i'm trying not to use linked lists...i don't understand it!
  2. Replies
    17
    Views
    2,100

    i know...but its destroying the fundamentals of...

    i know...but its destroying the fundamentals of the program! the basic input and output isnt working now!
  3. Replies
    17
    Views
    2,100

    i tried it. the thing is...i dont want to set a...

    i tried it. the thing is...i dont want to set a definite amount of locations in the array...and without that my program crashes!
  4. Replies
    17
    Views
    2,100

    i did, but it was giving errors when i tried to...

    i did, but it was giving errors when i tried to output from the file...so i tried something different! but i may have to revert :/
  5. Replies
    17
    Views
    2,100

    i understand sorting...in my case i dont have an...

    i understand sorting...in my case i dont have an array but im reading the entire file!
  6. Replies
    17
    Views
    2,100

    Ok so i basically want to sort by, as you said,...

    Ok so i basically want to sort by, as you said, age, but im not usings any arrays throughout my program! so i cant use arrays to sort!


    #include <stdio.h>
    #include <stdlib.h>

    struct...
  7. Replies
    17
    Views
    2,100

    yes its a struct! but for input and output i used...

    yes its a struct! but for input and output i used no arrays


    struct database{
    char fname[50];
    char lname[50];
    int age;
    char gender[50];
    int...
  8. Replies
    17
    Views
    2,100

    Sorting Without an Array

    Hi, i'm trying to sort a structure but its not set to any specific amount. However i'm trying to apply a bubble sort but the struct is not have an array! Is there any way to sort without an array??
  9. Replies
    7
    Views
    1,142

    Thanks alot for all the help guys

    Thanks alot for all the help guys
  10. Replies
    7
    Views
    1,142

    well that was my plan fro the beginning! but i...

    well that was my plan fro the beginning! but i have no idea how to start a linked list! help!!
  11. Replies
    7
    Views
    1,142

    hey thanks for the info but im still not sure how...

    hey thanks for the info but im still not sure how to use it :/ would the fgetc allow me to search the file and sort it ??
  12. Replies
    7
    Views
    1,142

    Reading an entire File

    Hi, is there anyway to read an entire file and print in on screen? file consists of strings and integers!
  13. Replies
    22
    Views
    2,599

    i have tried a different approach to the program....

    i have tried a different approach to the program. im using the stuct method rather than typdef struct! this way i'm not using an array to enter information. And it seems to be writing to the file...
  14. Replies
    22
    Views
    2,599

    hey i did as you asked and it seems to be...

    hey i did as you asked and it seems to be working!...btw what type of compiler do you recommend jweoblewski44?


    #include <stdio.h>

    typedef struct{
    char name[50];
    int age;
    ...
  15. Replies
    22
    Views
    2,599

    if i put more it crashes just like it did before!

    if i put more it crashes just like it did before!
  16. Replies
    22
    Views
    2,599

    im using Dev C++ on win7 i did the program before...

    im using Dev C++ on win7 i did the program before and it worked with static arrays! i trying it again and show you! maybe you can help me from there?
  17. Replies
    22
    Views
    2,599

    ok i put the function prototypes outside! and it...

    ok i put the function prototypes outside! and it seem to be running properly for 2 sets of data ONLY :/ not more!


    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    typedef struct
    {...
  18. Replies
    22
    Views
    2,599

    yes i realized :/ thanks but i rushed to put the...

    yes i realized :/ thanks but i rushed to put the code online so i didnt check it over properly :/
  19. Replies
    22
    Views
    2,599

    the menu function i am using works fine..ok its...

    the menu function i am using works fine..ok its like this. When i enter 2 sets of info (input function) the outputs works fine show the 2 sets of info! however if and add another set of info (now 3...
  20. Replies
    22
    Views
    2,599

    i just put the input output and files functions

    i just put the input output and files functions
  21. Replies
    22
    Views
    2,599

    Its basically a database for a sports day! I...

    Its basically a database for a sports day! I start with a menu to either, as mentioned before, input, output, sort and searching. I have just started and i only know the basics! So i tried to put...
  22. Replies
    22
    Views
    2,599

    Help in dynamic and Linked Lists

    hi
    Im trying to create a program that would be able to carry out a certain number of tasks any number of times undefined by the user! I was told to use linked list or dynamic arrays but i dont know...
Results 1 to 22 of 23