Search:

Type: Posts; User: givmefive5

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    864

    Well, my problem is..tracing it for around 1hr.....

    Well, my problem is..tracing it for around 1hr.. V is suppose to be connected to X, but after it loops back the outer loop, V will suddenly be pointing to A O_O
  2. Replies
    1
    Views
    864

    Sorting Problem,

    void SortRecipe(Recipe **pFirst){
    int swap;
    Recipe *pHead,*pTail,*pRun,*pLast;

    pRun=(*pFirst)->pNext;
    pLast=*pFirst;

    do{
    pTail=*pFirst;
    pHead=*pFirst;
  3. Replies
    3
    Views
    783

    Does this mean i got no way to access the pLink?...

    Does this mean i got no way to access the pLink? well since this would be sorting of the linked list, u got other way?
  4. Replies
    3
    Views
    783

    Help with Linked List

    I've heard that hiding a pointer type in a typedef is a bad practice, but this was the assignment given to us. Im having a hard time accessing the lists and "copying" the list. How to copy the pFirst...
  5. Replies
    6
    Views
    1,090

    edited everything you guys said to my program,...

    edited everything you guys said to my program, thank you :))
  6. Replies
    6
    Views
    1,090

    Edited that part, thanks Is my program...

    Edited that part, thanks

    Is my program logically correct, the accessing of the last part to be null byte. thanks. :))
  7. Replies
    6
    Views
    1,090

    Quick Question about Strings

    My program needs to have at least 15instructions with at most 70 string length. It should be declared inside a structure,



    typedef char string70[71];

    typedef struct{
    string70 instruct[15];...
  8. Replies
    1
    Views
    1,078

    Allocating again and again? HELP

    int foodcalorie (int *num,struct recipe **foodcal)
    {
    char ans='Y';
    system("cls");
    while(ans=='Y' && *foodcal!=NULL)
    {
    system("cls");
    ...
  9. Replies
    1
    Views
    713

    Please close the thread. Got my answer through...

    Please close the thread. Got my answer through research. Sorry and thank you.
  10. Replies
    1
    Views
    713

    Hi, Scan problem.

    printf("Do you want to activate 'Cheat Feature'? \n If Yes [Y], If No [N]\n");
    scanf("%c",&cheat);
    cheat=toupper(cheat);
    if(cheat=='Y')
    printf("Cheat...
  11. Replies
    4
    Views
    1,191

    I guess that's it..it's been working good now....

    I guess that's it..it's been working good now. Thanks..but..why was the space a big thing @_@
  12. Replies
    4
    Views
    1,191

    Simple Question

    //Ant, Bear, Cat, Dog, Emu, Goat, Lizard, Monkey, Parrot, Rabbit, Snake, and Tiger//

    #include <stdio.h>
    #include <stdlib.h>
    #include <time.h>
    char LetterSwap(char a)//swaps invalid randomed...
Results 1 to 12 of 12