Page 3 of 3 FirstFirst 123
Results 21 to 23 of 23

Thread: Need a little help with my IA

  1. #21
    Join Date
    Jan 2008
    Posts
    1,514
    Rep Power
    0

    Default

    Tried something... But it only seems to check the first letter
    Code:
        int digitcheck(unsigned int *c)
        {
            int chek;
            chek=c;
            while((isdigit(chek++)) && chek!= NULL)
            error();
            c=0;
            return 0;
    
            }
    Last edited by RickyRudy; Feb 1, 2010 at 10:05 PM.

  2. #22
    Join Date
    Jan 2009
    Posts
    2,404
    Rep Power
    0

    Default

    Quote Originally Posted by RickyRudy View Post
    Tried something... But it only seems to check the first letter
    Code:
        void digitcheck(unsigned int *c)
        {
            int chek;
            chek=c;
            while((isdigit(chek++)) && chek!= NULL)
            error();
            c=0;
            return 0;
    
            }
    This code looks fishy. Are you sure you're using your pointers properly? And what are you really doing to the passed variable "c"?
    Rooted OnePlus 2 64GB Ed, Android 5.1.1 OxygenOS ; on teifin' AT&T's network; Rooted ASUS Transformer TF101 w/ dock, Android 5.1 KatKiss; Laptop: ASUS X550C, 2.0GHzx2, 8GB, 512GB SSD, Kubuntu 15.10;
    Facebook page: Skeleville Technology Solutions

  3. #23
    Join Date
    Oct 2006
    Posts
    183
    Rep Power
    0

    Default

    You might want to check out Strol....
    I have the highest underclock in tech Ja! 1440.0
    DualCore AMD Athlon 64 X2 "Digicel is the bossss!!!! "
    TECNOLOGY IS THE BOSS!!! I am the boss!! Memba u r as cool as ur tecnology!!!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •