Click here to Skip to main content
15,895,084 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: how does this for loop work! Pin
benjymous24-Jan-06 23:31
benjymous24-Jan-06 23:31 
GeneralRe: how does this for loop work! Pin
Trollslayer25-Jan-06 1:42
mentorTrollslayer25-Jan-06 1:42 
AnswerRe: how does this for loop work! Pin
Owner drawn24-Jan-06 23:32
Owner drawn24-Jan-06 23:32 
AnswerRe: how does this for loop work! Pin
Rage24-Jan-06 23:43
professionalRage24-Jan-06 23:43 
GeneralRe: how does this for loop work! Pin
toxcct25-Jan-06 0:09
toxcct25-Jan-06 0:09 
AnswerRe: how does this for loop work! Pin
Rage25-Jan-06 0:03
professionalRage25-Jan-06 0:03 
GeneralRe: how does this for loop work! Pin
David Crow25-Jan-06 4:12
David Crow25-Jan-06 4:12 
AnswerWhat it actually means... ! Pin
toxcct25-Jan-06 0:43
toxcct25-Jan-06 0:43 
this is how we could see it in a better view :
<font color=blue>#include</font> <stdio.h>
 
<font color=blue>int main</font>(<font color=blue>void</font>) {
    <font color=blue>int</font> a = 0,
        b = 10,
        c = 10; <font color=green>//count variable is not of any use</font>
 
    <font color=blue>char</font>* pszMap =
        <font color=gray>"- FIGURE?, UMKC,XYZHello Folks,"
        "TFy!QJu ROo TNn(ROo)SLq SLq ULo+"
        "UHs UJq TNn*RPn/QPbEWS_JSWQAIJO^"
        "NBELPeHBFHT}TnALVlBLOFAkHFOuFETp"
        "HCStHAUFAgcEAelclcn^r^r\\tZvYxXy"
        "T|S~Pn SPm SOn TNn ULo0ULo#ULo-W"
        "Hq!WFs XDt!"</font>;
 
    a = pszMap[b+21];
    b++;
    <font color=blue>while</font> (a != <font color=gray>'\0'</font>) {
        <font color=blue>while</font> (a > 64) {
            a--;
            c++;
            <font color=blue>if</font> (c == 'Z') {
                c /= 9;
                putchar(c);
            }
            <font color=blue>else</font> {
                putchar(33 ^ (b & 1));
            }
        }
        a = pszMap[b+21];
        b++;
    }
    <font color=blue>return</font> 0;
}



TOXCCT >>> GEII power
[toxcct][VisualCalc 2.20][VCalc 3.0 soon...]
GeneralRe: What it actually means... ! Pin
Eytukan25-Jan-06 2:32
Eytukan25-Jan-06 2:32 
GeneralRe: What it actually means... ! Pin
toxcct25-Jan-06 2:34
toxcct25-Jan-06 2:34 
GeneralRe: What it actually means... ! Pin
Chris Losinger25-Jan-06 4:50
professionalChris Losinger25-Jan-06 4:50 
GeneralRe: What it actually means... ! Pin
toxcct25-Jan-06 4:54
toxcct25-Jan-06 4:54 
General[Message Deleted] Pin
Chris Losinger25-Jan-06 5:02
professionalChris Losinger25-Jan-06 5:02 
GeneralRe: What it actually means... ! Pin
toxcct25-Jan-06 5:04
toxcct25-Jan-06 5:04 
GeneralRe: What it actually means... ! Pin
Chris Losinger25-Jan-06 5:13
professionalChris Losinger25-Jan-06 5:13 
GeneralRe: What it actually means... ! Pin
toxcct25-Jan-06 6:12
toxcct25-Jan-06 6:12 
GeneralRe: What it actually means... ! Pin
toxcct25-Jan-06 6:46
toxcct25-Jan-06 6:46 
GeneralRe: What it actually means... ! Pin
Chris Losinger25-Jan-06 7:02
professionalChris Losinger25-Jan-06 7:02 
GeneralRe: What it actually means... ! Pin
toxcct25-Jan-06 7:04
toxcct25-Jan-06 7:04 
GeneralRe: What it actually means... ! Pin
Chris Losinger25-Jan-06 7:09
professionalChris Losinger25-Jan-06 7:09 
GeneralRe: What it actually means... ! Pin
sunit525-Jan-06 7:14
sunit525-Jan-06 7:14 
GeneralRe: What it actually means... ! Pin
BadKarma25-Jan-06 20:42
BadKarma25-Jan-06 20:42 
GeneralRe: What it actually means... ! Pin
toxcct26-Jan-06 3:10
toxcct26-Jan-06 3:10 
GeneralRe: What it actually means... ! Pin
BadKarma26-Jan-06 3:36
BadKarma26-Jan-06 3:36 
GeneralRe: What it actually means... ! Pin
toxcct26-Jan-06 5:23
toxcct26-Jan-06 5:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.