Search:

Type: Posts; User: aaronljx

Search: Search took 0.00 seconds.

  1. a better code would be typedef struct{ ...

    a better code would be



    typedef struct{
    char country_name[50];
    int gold;
    int silver;
    int bronze;
    } SPORTS;
  2. Replies
    11
    Views
    2,050

    Then any alternative?

    Then any alternative?
  3. Replies
    11
    Views
    2,050

    Ahh thanks for the advice.. I also thought about...

    Ahh thanks for the advice.. I also thought about writing my own code to format the string, I am thinking that probably after loading the big chunk of string into the memory, I'll create another...
  4. Replies
    11
    Views
    2,050

    Improving the efficiency..

    Hey all, recently I've played around with pointers and some win32 API and I've came up with this portion of code, to basically load a set of string from a file on a secondary storage, store it in the...
  5. Thread: help on loop

    by aaronljx
    Replies
    53
    Views
    5,477

    int main (void) { int a, b, c, d; int n;...

    int main (void)
    {
    int a, b, c, d;
    int n;
    int temp;

    do
    {
    printf("Enter a five-digit number < -1 to end >: ");
    scanf(" %d", &n); // if you are going to ask the user for input over...
Results 1 to 5 of 5