Thread: Help a n00b out...

  1. #16
    Registered User
    Join Date
    Apr 2002
    Posts
    200
    All that i was saying (yes youre stupid) is that uraldor had no right to flame Klinerr1 for such a dumb reason,
    And so what right do you have to make threats? And what exactly do you expect when you make them?
    I go to encounter for the millionth time the reality of experience and to forge in the smithy of my soul the uncreated conscience of my race.

    Windows XP consists of 32 bit extensions and a graphical shell for a 16 bit patch to an 8 bit operating system originally coded for a 4 bit microprocessor, written by a 2 bit company, that can't stand 1 bit of competition.

  2. #17
    Seven years? civix's Avatar
    Join Date
    Jul 2002
    Posts
    605
    It wasnt a threat, fyodor.. Remember the line of code that said:

    And that's not a threat, thats a Promise!!! But anyways, lets just put all this crap behind us an all be nice i know thats what everyone wants (especially the mods )
    .

  3. #18
    Sir Mister Insane Sako Klinerr1's Avatar
    Join Date
    May 2002
    Posts
    608
    Originally posted by ihsir
    >>So flame Klinner1 again, and see what happens to you.

    Also, thats not a theat..THATS A PROMISE!!! <<

    Hey, whats happening to this nice little board..


    civix scares me
    and so does Klinner1's typos

    your jelious cause u can only type into English and not TYPOish. muahahahahahhahaahahahahhaha. after a long period of progrmaming i stop typos cuas eht edman compilers dontunderstna TYPOish
    Email: [email protected] || AIM: MisterSako || MSN: [email protected]

    -the shroom has spoken

  4. #19
    Sir Mister Insane Sako Klinerr1's Avatar
    Join Date
    May 2002
    Posts
    608
    ad he never xplained wut he was tryign to do. he just siad he had problems
    Email: [email protected] || AIM: MisterSako || MSN: [email protected]

    -the shroom has spoken

  5. #20
    Seven years? civix's Avatar
    Join Date
    Jul 2002
    Posts
    605
    KLINERR1!!! I KNOW YOURE ONLINE, SO GET ON AIM!!!
    .

  6. #21
    Seven years? civix's Avatar
    Join Date
    Jul 2002
    Posts
    605
    I explained it all in that one big post, but that doesnt seem to be good enough for these guys
    .

  7. #22
    Registered User
    Join Date
    Dec 2001
    Posts
    421
    Also, thats not a theat..THATS A PROMISE!!!

    Well, I'm shaking in my boots! I'll wait for you to execute your promise.... or more likely die laughing watching you and your "1337 hAx0r" script kiddie buddies TRY to exectue it

    ad he never xplained wut he was tryign to do. he just siad he had problems

    hrm, if he didn't 'xplained wut he was tryign to do', then how come i had no problem understanding it and answered his question?? Maybe it's my special telepathic ability that allowed me to figure it out by reading his mind?

    How about we all just wrap up the b*tching session. The original question has been answered, that's all that matters.

    now have a nice day

    U.
    Quidquid latine dictum sit, altum sonatur.
    Whatever is said in Latin sounds profound.

  8. #23
    Sir Mister Insane Sako Klinerr1's Avatar
    Join Date
    May 2002
    Posts
    608
    lets just stop flaming eachother and stuff its a waste of time.
    Email: [email protected] || AIM: MisterSako || MSN: [email protected]

    -the shroom has spoken

  9. #24
    "The Oldest Member Here" Xterria's Avatar
    Join Date
    Sep 2001
    Location
    Buffalo, NY
    Posts
    1,039
    i am gettin so hot i wanna take my cloths off

  10. #25
    Seven years? civix's Avatar
    Join Date
    Jul 2002
    Posts
    605
    uhh, dont say that, Xterria....im very sure none of us want that...
    .

  11. #26
    Registered User
    Join Date
    Jul 2002
    Posts
    44
    Hey... everyone. ... Me again. Sorry that my thread seems to have people arguing... And before I post something else related to this thread (regarding the problem I have), should I continue with this thread-even though it's related to C?

  12. #27
    Registered User
    Join Date
    Feb 2002
    Posts
    145
    Are we gonna help out diddy02, or just flame until the world is set on fire?
    "Um...well..."
    -Kyoto Oshiro

  13. #28
    Registered User
    Join Date
    Jul 2002
    Posts
    44
    Heh. Upto you, I guess. So C forums, or here?

  14. #29
    Seven years? civix's Avatar
    Join Date
    Jul 2002
    Posts
    605
    well, the thread is already here, so ask away...
    .

  15. #30
    Registered User
    Join Date
    Jul 2002
    Posts
    44
    Now the following is what I need help with. Hyphens rep. spaces.

    2)
    ****
    --***
    ---**
    ----*

    3)
    -*
    -***
    ****

    4)
    1
    101
    1010
    10101


    I need help with 2, 3, 4. I'm so damn close to #2, but I just can't get it! I can get an output of the following (underscores rep spaces)

    _*
    __*
    ___*
    ____*
    _____*

    I got my space counter on the dot but my stars counter is flawed and I can't figure out where!

    Code:
    #include <stdio.h>
    #include <conio.h>
    
    void main()
    
    {
    
    	int spaces, stars;
    
    	for(spaces = 0; spaces <= 4; spaces++)
    
    
    
    	   {
    
    
    //--------------------------------------------------------------
    
    
    	   	for (stars = 0; stars <= spaces; stars=stars+1)
    
    	   	{
    
    	   	   printf("_");
    		   
    	   	}
    
    
    //--------------------------------------------------------------
    
    
    	   printf("%d %d\n", stars, spaces);
    
    
    	   }
    
    
    
    printf("\n\n");
    printf("Damned value of * is ...%d\n", stars);
    
    
       getch();
    
    }
    The extra printfs are just to help me figure out what's going on. The concept of the for loop used to be crystal clear, but I've been reading a lot of different stuff and I can't figure it out anymore... Can you also please clear up the following-

    When I use

    for(x=1; x<4; x--)
    I'm doing for(x equals 1; x is less than 4; because last condition was true, I'm executing x--)

    { (open for body)

    for(y=2; y<=x; y++)
    {
    (^ is an enveloped for loop, and is the inner loop-executes itself, then breaks to outer for loop)
    }

    printf("Hello world");

    }

    (now my outer for loop is finished, so it goes back to the beginning of the outer for loop and does what? Does it keep executing until the second condition (x<4) becomes false? If this is false, does it still execute the inner loop? What does it do?)

    TIA, and please don't answer my hw question by writing up the code... I'd appreciate hints and stuff, but whatever you do... just explain because I'm getting more and more confused!
    Last edited by diddy02; 07-17-2002 at 10:13 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. n00b questions
    By C+noob in forum C++ Programming
    Replies: 43
    Last Post: 07-09-2005, 03:38 PM
  2. n00b problems
    By piebob in forum C++ Programming
    Replies: 2
    Last Post: 06-17-2005, 01:51 AM
  3. n00b Code Error.
    By Zeusbwr in forum C++ Programming
    Replies: 4
    Last Post: 10-11-2004, 05:15 PM
  4. n00b doing a Socket operation on non-socket
    By Kinasz in forum Networking/Device Communication
    Replies: 2
    Last Post: 03-25-2004, 03:29 AM
  5. ISO someone daring to look at some n00b code!
    By Rev. Jack Ed in forum Game Programming
    Replies: 4
    Last Post: 10-17-2003, 08:45 AM