Click here to Skip to main content
15,886,362 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Beginner's Question 2 Pin
UKM_Student13-Sep-09 23:48
UKM_Student13-Sep-09 23:48 
QuestionRe: Beginner's Question 2 Pin
David Crow11-Sep-09 5:40
David Crow11-Sep-09 5:40 
AnswerRe: Beginner's Question 2 Pin
UKM_Student11-Sep-09 5:45
UKM_Student11-Sep-09 5:45 
QuestionRe: Beginner's Question 2 Pin
David Crow11-Sep-09 5:54
David Crow11-Sep-09 5:54 
AnswerRe: Beginner's Question 2 Pin
UKM_Student11-Sep-09 6:16
UKM_Student11-Sep-09 6:16 
QuestionRe: Beginner's Question 2 Pin
David Crow11-Sep-09 6:21
David Crow11-Sep-09 6:21 
AnswerRe: Beginner's Question 2 Pin
UKM_Student11-Sep-09 6:26
UKM_Student11-Sep-09 6:26 
GeneralRe: Beginner's Question 2 Pin
David Crow11-Sep-09 6:32
David Crow11-Sep-09 6:32 
UKM_Student wrote:
char Letter1,counter=1,Letter,a;


char Letter1 = 'A';
UKM_Student wrote:
while((counter<=26))
{
Letter1=a;
Letter=Letter1+1;
counter++;
}
cout<<letter;< blockquote="">

while (Letter1 <= 'Z')
{
    cout << Letter1 << endl;
    Letter1++;
}


"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown

"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons


GeneralRe: Beginner's Question 2 Pin
UKM_Student11-Sep-09 6:38
UKM_Student11-Sep-09 6:38 
GeneralRe: Beginner's Question 2 Pin
UKM_Student11-Sep-09 5:27
UKM_Student11-Sep-09 5:27 
QuestionRe: Beginner's Question 2 Pin
David Crow11-Sep-09 5:35
David Crow11-Sep-09 5:35 
AnswerRe: Beginner's Question 2 Pin
UKM_Student11-Sep-09 5:44
UKM_Student11-Sep-09 5:44 
QuestionHow to control the size of MessageBox Pin
Software200711-Sep-09 3:21
Software200711-Sep-09 3:21 
QuestionRe: How to control the size of MessageBox Pin
David Crow11-Sep-09 3:44
David Crow11-Sep-09 3:44 
AnswerRe: How to control the size of MessageBox Pin
Software200711-Sep-09 5:24
Software200711-Sep-09 5:24 
QuestionRe: How to control the size of MessageBox Pin
David Crow11-Sep-09 5:26
David Crow11-Sep-09 5:26 
AnswerRe: How to control the size of MessageBox Pin
Software200711-Sep-09 5:32
Software200711-Sep-09 5:32 
GeneralRe: How to control the size of MessageBox Pin
David Crow11-Sep-09 5:47
David Crow11-Sep-09 5:47 
GeneralRe: How to control the size of MessageBox Pin
Software200711-Sep-09 5:59
Software200711-Sep-09 5:59 
AnswerRe: How to control the size of MessageBox Pin
David Crow11-Sep-09 6:00
David Crow11-Sep-09 6:00 
GeneralRe: How to control the size of MessageBox Pin
Software200711-Sep-09 6:02
Software200711-Sep-09 6:02 
AnswerRe: How to control the size of MessageBox Pin
David Crow11-Sep-09 6:03
David Crow11-Sep-09 6:03 
GeneralRe: How to control the size of MessageBox Pin
Software200711-Sep-09 6:06
Software200711-Sep-09 6:06 
AnswerRe: How to control the size of MessageBox Pin
Richard MacCutchan11-Sep-09 4:23
mveRichard MacCutchan11-Sep-09 4:23 
AnswerRe: How to control the size of MessageBox Pin
Joe Woodbury11-Sep-09 6:10
professionalJoe Woodbury11-Sep-09 6:10 

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.