Search:

Type: Posts; User: Milo Juak MuTou

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,260

    Hi, thanks for your reply! To be honest I still...

    Hi, thanks for your reply!
    To be honest I still very fresh in C++ as I just started a few days ago, I'm sorry that I can't really understand what do you mean :(

    Can you provide me some example...
  2. Replies
    3
    Views
    1,260

    Validity Check.

    Greeting,

    I wonder how can I improve my validity check for user input? I only want them to key in certain range of digit.

    Also for my validity check, when I key in character such as ABC, it...
  3. Replies
    5
    Views
    1,030

    Thanks! I finally resolved my problem by using...

    Thanks! I finally resolved my problem by using strcpy, I feel I'm stupid for making mistake like &d lol.. Thanks for pointing that out :) Learnt a lots of thing, this has been bugging me for whole...
  4. Replies
    5
    Views
    1,030

    Hellow :) thanks for your respond, I believe the...

    Hellow :) thanks for your respond,
    I believe the problem is not there, I think the problem is somewhere around :


    tempStorage -> categoryID = tempCategoryID;
    tempStorage -> categoryName[50] =...
  5. Replies
    5
    Views
    1,030

    Linked List problem..

    Dear guys,

    I'm facing some problem about the Name is not displaying as I expected..


    #include <stdio.h>
    #include <conio.h>
    #include <stdlib.h>
  6. Replies
    3
    Views
    1,049

    Hellow, thanks for your fast respond, really...

    Hellow, thanks for your fast respond, really appreciate it. :)

    I tried :

    temp = malloc(sizeof(node));
    temp-> id= tempid;
    temp->name= tempname;
    temp-> idP= tempidP;
    temp->nameP= tempnameP;...
  7. Replies
    3
    Views
    1,049

    convert Linked list in C++ to C

    Hellow everyone,

    I have a problem in converting a C++ code to C.



    struct node
    {
    int id;
    string name;
  8. Replies
    4
    Views
    1,363

    while ( strchr("SPE", toupper(choice) ) == NULL )...

    while ( strchr("SPE", toupper(choice) ) == NULL )

    What is toupper mean? ;O It include the 's' 'p' 'e'?

    Another question :
    How do I make my program delay for a few second? sleep(1) seem like...
  9. Replies
    4
    Views
    1,363

    Help with Array.

    printf("\t\tPlease Choose:\n");
    printf("\t\t[S]ales\n");
    printf("\t\t[P]ayment\n");
    printf("\t\t[E]xit\n");
    printf("\t\tYour choice: ");
    scanf(" %c", &choice);


    while...
  10. Thanks all, now I know what I did wrong.. You...

    Thanks all, now I know what I did wrong.. You guys are so helpful ;D Thanks <3
  11. Can you explain in a more simple way? >< And...

    Can you explain in a more simple way? ><
    And actually what is the function for getchar();?
  12. I'm new to C, confuse with something..

    Dear sir and madam,

    I would like to ask why it print 2 times instead of one if I input a wrong character ._.?


    #include<stdio.h>

    int main()
    {
    float H_P = 24.90, I_S = 25.90, V_D = 25;
Results 1 to 12 of 12